Able Ability System Info and Support Thread

Oh, I understand now. Thanks for clarifications!

Hi there , thanks for the plugin. I got it during the sale, and have been enjoying using it so far. I’ve run into one repeating issue - it’s kind of a two-parter, so bare with me. When I create a custom task, add it to an ability, and attempt to use that ability, the editor crashes with this log:

Fatal error: [File:/Build/++UE4/Sync/Engine/Source/Runtime/CoreUObject/Private/Templates/Casts.cpp] [Line: 10] Cast of nullptr to AblAbilityTaskScratchPad failed

[SPOILER] UE4Editor_CoreUObject UE4Editor_AbleCore!UAblCustomTask::CreateScratchPad() [d:\build++portal+promotion\sync\localbuilds\plugintemp\hostproject\plugins\able\source\ablecore\private asks\ablcustomtask.cpp:73] UE4Editor_AbleCore!UAblAbilityContext::AllocateScratchPads() [d:\build++portal+promotion\sync\localbuilds\plugintemp\hostproject\plugins\able\source\ablecore\private\ablabilitycontext.cpp:101] UE4Editor_AbleCore!UAblAbilityComponent::InternalStartAbility() [d:\build++portal+promotion\sync\localbuilds\plugintemp\hostproject\plugins\able\source\ablecore\private\ablabilitycomponent.cpp:1033] UE4Editor_AbleCore!UAblAbilityComponent::ActivateAbility() [d:\build++portal+promotion\sync\localbuilds\plugintemp\hostproject\plugins\able\source\ablecore\private\ablabilitycomponent.cpp:408] UE4Editor_AbleCore!UAblAbilityComponent::execActivateAbility() [d:\build++portal+promotion\sync\localbuilds\plugintemp\hostproject\plugins\able\source\ablecore\classes\ablabilitycomponent.h:97] UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_Engine UE4Editor_Engine UE4Editor_Engine UE4Editor_Engine UE4Editor_Engine UE4Editor_Engine UE4Editor_Engine UE4Editor_Engine UE4Editor_Engine UE4Editor_Engine UE4Editor_Core UE4Editor_Core UE4Editor_Core UE4Editor_Engine UE4Editor_Engine UE4Editor_Engine UE4Editor_Engine UE4Editor_UnrealEd UE4Editor_UnrealEd UE4Editor UE4Editor UE4Editor UE4Editor UE4Editor kernel32 ntdll[/SPOILER]

After this, oddly enough, the task will work fine during gameplay. Ordinarily I’d just move on, except after that initial crash, any time I compile an edit to the custom task while it’s added to an ability, I get a crash with this log:

Assertion failed: bCustomPropertyListForPostConstructionInitialized [File:/Build/++UE4/Sync/Engine/Source/Runtime/Engine/Private/BlueprintGeneratedClass.cpp] [Line: 618]

[SPOILER]UE4Editor_Core UE4Editor_Core UE4Editor_Engine UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_CoreUObject UE4Editor_AbleEditor!FAbleEditor::OnObjectReplaced() [d:\build++portal+promotion\sync\localbuilds\plugintemp\hostproject\plugins\able\source\ableeditor\private\ableeditor.cpp:181] UE4Editor_AbleEditor!TBaseRawMethodDelegateInstance<0,FAbleEditor,void __cdecl(TMap<UObject *,UObject *,FDefaultSetAllocator,TDefaultMapHashableKeyFuncs<UObject *,UObject *,0> > const &)>::ExecuteIfSafe() [d:\rocketsync\4.24.0-10570792+++ue4+release-4.24\working\engine\source\runtime\core\public\delegates\delegateinstancesimpl.h:541] UE4Editor_UnrealEd UE4Editor_UnrealEd UE4Editor_Engine UE4Editor_UnrealEd UE4Editor_Kismet UE4Editor_Kismet UE4Editor_Kismet UE4Editor_Kismet UE4Editor_UnrealEd UE4Editor_Kismet UE4Editor_Kismet UE4Editor_Slate UE4Editor_Slate UE4Editor_Slate UE4Editor_Slate UE4Editor_Slate UE4Editor_Slate UE4Editor_Slate UE4Editor_Slate UE4Editor_Slate UE4Editor_ApplicationCore UE4Editor_ApplicationCore UE4Editor_ApplicationCore UE4Editor_ApplicationCore user32 user32 UE4Editor_ApplicationCore UE4Editor UE4Editor UE4Editor UE4Editor UE4Editor kernel32 ntdll[/SPOILER]

As you may imagine, removing my custom ability from every ability I have an instance on and then adding it back after just to compile an edit is a bit much. I must be missing something. I re-created this consistently with the example custom task you made in the documentation, following all the correct procedures for the custom scratch pad. Thanks in advance for your help.

Hey there Salty,

For the 1st error, it’s complaining that you don’t have the CreateScratchPad Blueprint method overloaded. It expects some scratchpad, you can just create a simple UAblAbilityTaskScratchPad object and return that. Admittedly that should probably just be a warning since your task may not need a scratchpad.

For the 2nd error, that one is a bit more confusing. So Able is trying to replace the old custom task with your newly compiled one (so you don’t have to replace all your Ability tasks manually), but the BP compiler is saying it didn’t finish initializing the properties yet. Maybe because of the crash in the 1st error? I’d try and fix that and see if it improves things, otherwise see if you can get me a full callstack for that 2nd error - the one you posted doesn’t have where it failed in the UObject creation.

Hi , thanks for the response. I went back in and attempted to create a custom task again, as well as recreate the second error (which I succeeded in doing).

As for the first error, I certainly have an AbleCore.AblCustomScratchPad that I made, hooked up in the overriden function CreateScratchPadBP. I assume that is fine since it’s a child of UAblAbilityTaskScratchPad?

See below:

The task is named “Launch Character”, but all that’s in it at the moment is a print string hooked up to a GetDisplayName on a ForEach target actor from the context. It seems the first crash only occurs when I have some literal info or variable being used that doesn’t come from the scratch pad, which makes sense. So in a slight tangent (this is a bit of a moot point at the moment), how do I set instance-specific variables for the scratch pad? My end-goal is to have a LaunchCharacter task that I can put in an ability and adjust exposed variables in the Able editor, so I can create double-jumps and dashes that make use of Able. I could simply use root motion, but that’s only really effective for horizontal movement, and I couldn’t figure out the JumpTo task, though I assume that’s because it’s in an experimental state.

Here is the full callstack for the second error (or at least, I believe this is what you are looking for. I don’t often do debugging of this nature):



<?xml version="1.0" encoding="UTF-8"?>
<FGenericCrashContext>
    <RuntimeProperties>
        <CrashVersion>3</CrashVersion>
        <ExecutionGuid>0B33EF4B4A2A11B3C83E43A74E9207F4</ExecutionGuid>
        <CrashGUID>UE4CC-Windows-AD99E30F4A926580AE579DA813158243_0000</CrashGUID>
        <IsEnsure>false</IsEnsure>
        <IsAssert>true</IsAssert>
        <CrashType>Assert</CrashType>
        <ErrorMessage>Assertion failed: bCustomPropertyListForPostConstructionInitialized [File:D:/Build/++UE4/Sync/Engine/Source/Runtime/Engine/Private/BlueprintGeneratedClass.cpp] [Line: 618]</ErrorMessage>
        <CrashReporterMessage />
        <ProcessId>10876</ProcessId>
        <SecondsSinceStart>63</SecondsSinceStart>
        <IsInternalBuild>false</IsInternalBuild>
        <IsPerforceBuild>false</IsPerforceBuild>
        <IsSourceDistribution>false</IsSourceDistribution>
        <GameName>UE4-AbleTesting</GameName>
        <ExecutableName>UE4Editor</ExecutableName>
        <BuildConfiguration>Development</BuildConfiguration>
        <GameSessionID>der</GameSessionID>
        <Symbols>**UE4*Release-4.24-CL-11590370-Win64-Development</Symbols>
        <PlatformName>WindowsNoEditor</PlatformName>
        <PlatformNameIni>Windows</PlatformNameIni>
        <EngineMode>Editor</EngineMode>
        <EngineModeEx>Dirty</EngineModeEx>
        <DeploymentName />
        <EngineVersion>4.24.3-11590370+++UE4+Release-4.24</EngineVersion>
        <CommandLine>"C:\Users\ryans\Documents\Unreal Projects\AbleTesting\AbleTesting.uproject"</CommandLine>
        <LanguageLCID>0</LanguageLCID>
        <AppDefaultLocale>en-US</AppDefaultLocale>
        <BuildVersion>++UE4+Release-4.24-CL-11590370</BuildVersion>
        <IsUE4Release>true</IsUE4Release>
        <IsRequestingExit>false</IsRequestingExit>
        <UserName>ryans</UserName>
        <BaseDir>C:/Program Files/Epic Games/UE_4.24/Engine/Binaries/Win64/</BaseDir>
        <RootDir>C:/Program Files/Epic Games/UE_4.24/</RootDir>
        <MachineId>CE9A938F4DAD1F61DB6E74A7179B5FE3</MachineId>
        <LoginId>ce9a938f4dad1f61db6e74a7179b5fe3</LoginId>
        <EpicAccountId>a3517d628f3d46c38439a092311583e2</EpicAccountId>
        <SourceContext />
        <UserDescription />
        <UserActivityHint>Layout="AssetEditorToolkit_Toolbar" Label="Toolbar" Content=SBorder</UserActivityHint>
        <CrashDumpMode>0</CrashDumpMode>
        <GameStateName />
        <Misc.NumberOfCores>6</Misc.NumberOfCores>
        <Misc.NumberOfCoresIncludingHyperthreads>12</Misc.NumberOfCoresIncludingHyperthreads>
        <Misc.Is64bitOperatingSystem>1</Misc.Is64bitOperatingSystem>
        <Misc.CPUVendor>GenuineIntel</Misc.CPUVendor>
        <Misc.CPUBrand>Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz</Misc.CPUBrand>
        <Misc.PrimaryGPUBrand>Intel(R) UHD Graphics 630</Misc.PrimaryGPUBrand>
        <Misc.OSVersionMajor>Windows 10 (Release 1909)</Misc.OSVersionMajor>
        <Misc.OSVersionMinor />
        <MemoryStats.TotalPhysical>17045114880</MemoryStats.TotalPhysical>
        <MemoryStats.TotalVirtual>140737488224256</MemoryStats.TotalVirtual>
        <MemoryStats.PageSize>4096</MemoryStats.PageSize>
        <MemoryStats.TotalPhysicalGB>16</MemoryStats.TotalPhysicalGB>
        <MemoryStats.AvailablePhysical>10860212224</MemoryStats.AvailablePhysical>
        <MemoryStats.AvailableVirtual>140728501919744</MemoryStats.AvailableVirtual>
        <MemoryStats.UsedPhysical>1589673984</MemoryStats.UsedPhysical>
        <MemoryStats.PeakUsedPhysical>1589678080</MemoryStats.PeakUsedPhysical>
        <MemoryStats.UsedVirtual>2641395712</MemoryStats.UsedVirtual>
        <MemoryStats.PeakUsedVirtual>3049148416</MemoryStats.PeakUsedVirtual>
        <MemoryStats.bIsOOM>0</MemoryStats.bIsOOM>
        <MemoryStats.OOMAllocationSize>0</MemoryStats.OOMAllocationSize>
        <MemoryStats.OOMAllocationAlignment>0</MemoryStats.OOMAllocationAlignment>
        <NumMinidumpFramesToIgnore>4</NumMinidumpFramesToIgnore>
        <CallStack>UE4Editor_Core
UE4Editor_Core
UE4Editor_Engine
UE4Editor_CoreUObject
UE4Editor_CoreUObject
UE4Editor_CoreUObject
UE4Editor_CoreUObject
UE4Editor_AbleEditor!FAbleEditor::OnObjectReplaced() [d:\build\++portal+promotion\sync\localbuilds\plugintemp\hostproject\plugins\able\source\ableeditor\private\ableeditor.cpp:181]
UE4Editor_AbleEditor!TBaseRawMethodDelegateInstance<0,FAbleEditor,void __cdecl(TMap<UObject *,UObject *,FDefaultSetAllocator,TDefaultMapHashableKeyFuncs<UObject *,UObject *,0> > const &)>::ExecuteIfSafe() [d:\rocketsync\4.24.0-10570792+++ue4+release-4.24\working\engine\source\runtime\core\public\delegates\delegateinstancesimpl.h:541]
UE4Editor_UnrealEd
UE4Editor_UnrealEd
UE4Editor_Engine
UE4Editor_UnrealEd
UE4Editor_Kismet
UE4Editor_Kismet
UE4Editor_Kismet
UE4Editor_Kismet
UE4Editor_UnrealEd
UE4Editor_Kismet
UE4Editor_Kismet
UE4Editor_Slate
UE4Editor_Slate
UE4Editor_Slate
UE4Editor_Slate
UE4Editor_Slate
UE4Editor_Slate
UE4Editor_Slate
UE4Editor_Slate
UE4Editor_Slate
UE4Editor_ApplicationCore
UE4Editor_ApplicationCore
UE4Editor_ApplicationCore
UE4Editor_ApplicationCore
user32
user32
UE4Editor_ApplicationCore
UE4Editor
UE4Editor
UE4Editor
UE4Editor
UE4Editor
kernel32
ntdll</CallStack>
        <PCallStack>VCRUNTIME140 0x000000000ea10000 + c1c0 ntdll 0x000000001b220000 + a121f ntdll 0x000000001b220000 + 6a289 ntdll 0x000000001b220000 + 6a043 KERNELBASE 0x0000000018cd0000 + 3a839 UE4Editor-Core 0x00000000bd9d0000 + 4fa7b6 UE4Editor-Core 0x00000000bd9d0000 + 4fdc58 UE4Editor-Core 0x00000000bd9d0000 + 2b2c7d UE4Editor-Core 0x00000000bd9d0000 + 23fd43 UE4Editor-Core 0x00000000bd9d0000 + 2420c0 UE4Editor-Engine 0x00000000abd70000 + 4d58bc UE4Editor-CoreUObject 0x00000000c35f0000 + 37500a UE4Editor-CoreUObject 0x00000000c35f0000 + 37d239 UE4Editor-CoreUObject 0x00000000c35f0000 + 351c08 UE4Editor-CoreUObject 0x00000000c35f0000 + 399db9 UE4Editor-AbleEditor 0x0000000095620000 + f1961 UE4Editor-AbleEditor 0x0000000095620000 + a65ce UE4Editor-UnrealEd 0x00000000bc250000 + 2f6ce UE4Editor-UnrealEd 0x00000000bc250000 + 3d0f40 UE4Editor-Engine 0x00000000abd70000 + 1380688 UE4Editor-UnrealEd 0x00000000bc250000 + 7b7388 UE4Editor-Kismet 0x00000000bb8e0000 + 1014eb UE4Editor-Kismet 0x00000000bb8e0000 + b4602 UE4Editor-Kismet 0x00000000bb8e0000 + 60f72 UE4Editor-Kismet 0x00000000bb8e0000 + 60d04 UE4Editor-UnrealEd 0x00000000bc250000 + 7b32f8 UE4Editor-Kismet 0x00000000bb8e0000 + 1568fd UE4Editor-Kismet 0x00000000bb8e0000 + 1725c8 UE4Editor-Slate 0x00000000dcb30000 + 56c6a UE4Editor-Slate 0x00000000dcb30000 + 132b22 UE4Editor-Slate 0x00000000dcb30000 + 112074 UE4Editor-Slate 0x00000000dcb30000 + 1a1498 UE4Editor-Slate 0x00000000dcb30000 + 1b9281 UE4Editor-Slate 0x00000000dcb30000 + 1323f UE4Editor-Slate 0x00000000dcb30000 + 99175 UE4Editor-Slate 0x00000000dcb30000 + 8413e UE4Editor-Slate 0x00000000dcb30000 + 78f67 UE4Editor-ApplicationCore 0x0000000001020000 + 24ca1 UE4Editor-ApplicationCore 0x0000000001020000 + 1242f UE4Editor-ApplicationCore 0x0000000001020000 + 27195 UE4Editor-ApplicationCore 0x0000000001020000 + ec40 USER32 0x00000000197b0000 + 15b6d USER32 0x00000000197b0000 + 15562 UE4Editor-ApplicationCore 0x0000000001020000 + 28699 UE4Editor 0x00000000df070000 + 6db0 UE4Editor 0x00000000df070000 + 1c3ec UE4Editor 0x00000000df070000 + 1c4ca UE4Editor 0x00000000df070000 + 2ceae UE4Editor 0x00000000df070000 + 2fcbe KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</PCallStack>
        <PCallStackHash>6921EFEF52A4A17F444F275AE2413DAFD7DB8B7E</PCallStackHash>
        <Threads>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 4fa86d UE4Editor 0x00000000df070000 + 3299f VCRUNTIME140 0x000000000ea10000 + c1c0 ntdll 0x000000001b220000 + a121f ntdll 0x000000001b220000 + 6a289 ntdll 0x000000001b220000 + 6a043 KERNELBASE 0x0000000018cd0000 + 3a839 UE4Editor-Core 0x00000000bd9d0000 + 4fa7b6 UE4Editor-Core 0x00000000bd9d0000 + 4fdc58 UE4Editor-Core 0x00000000bd9d0000 + 2b2c7d UE4Editor-Core 0x00000000bd9d0000 + 23fd43 UE4Editor-Core 0x00000000bd9d0000 + 2420c0 UE4Editor-Engine 0x00000000abd70000 + 4d58bc UE4Editor-CoreUObject 0x00000000c35f0000 + 37500a UE4Editor-CoreUObject 0x00000000c35f0000 + 37d239 UE4Editor-CoreUObject 0x00000000c35f0000 + 351c08 UE4Editor-CoreUObject 0x00000000c35f0000 + 399db9 UE4Editor-AbleEditor 0x0000000095620000 + f1961 UE4Editor-AbleEditor 0x0000000095620000 + a65ce UE4Editor-UnrealEd 0x00000000bc250000 + 2f6ce UE4Editor-UnrealEd 0x00000000bc250000 + 3d0f40 UE4Editor-Engine 0x00000000abd70000 + 1380688 UE4Editor-UnrealEd 0x00000000bc250000 + 7b7388 UE4Editor-Kismet 0x00000000bb8e0000 + 1014eb UE4Editor-Kismet 0x00000000bb8e0000 + b4602 UE4Editor-Kismet 0x00000000bb8e0000 + 60f72 UE4Editor-Kismet 0x00000000bb8e0000 + 60d04 UE4Editor-UnrealEd 0x00000000bc250000 + 7b32f8 UE4Editor-Kismet 0x00000000bb8e0000 + 1568fd UE4Editor-Kismet 0x00000000bb8e0000 + 1725c8 UE4Editor-Slate 0x00000000dcb30000 + 56c6a UE4Editor-Slate 0x00000000dcb30000 + 132b22 UE4Editor-Slate 0x00000000dcb30000 + 112074 UE4Editor-Slate 0x00000000dcb30000 + 1a1498 UE4Editor-Slate 0x00000000dcb30000 + 1b9281 UE4Editor-Slate 0x00000000dcb30000 + 1323f UE4Editor-Slate 0x00000000dcb30000 + 99175 UE4Editor-Slate 0x00000000dcb30000 + 8413e UE4Editor-Slate 0x00000000dcb30000 + 78f67 UE4Editor-ApplicationCore 0x0000000001020000 + 24ca1 UE4Editor-ApplicationCore 0x0000000001020000 + 1242f UE4Editor-ApplicationCore 0x0000000001020000 + 27195 UE4Editor-ApplicationCore 0x0000000001020000 + ec40 USER32 0x00000000197b0000 + 15b6d USER32 0x00000000197b0000 + 15562 UE4Editor-ApplicationCore 0x0000000001020000 + 28699 UE4Editor 0x00000000df070000 + 6db0 UE4Editor 0x00000000df070000 + 1c3ec UE4Editor 0x00000000df070000 + 1c4ca UE4Editor 0x00000000df070000 + 2ceae UE4Editor 0x00000000df070000 + 2fcbe KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>true</IsCrashed>
                <Registers />
                <ThreadID>21104</ThreadID>
                <ThreadName>GameThread</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-TraceLog 0x0000000014310000 + 306b UE4Editor-TraceLog 0x0000000014310000 + 1016 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>17920</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c7e4 KERNELBASE 0x0000000018cd0000 + 759f1 UE4Editor-Core 0x00000000bd9d0000 + 4f9e38 UE4Editor-Core 0x00000000bd9d0000 + 4fad2b UE4Editor-Core 0x00000000bd9d0000 + 4eef22 UE4Editor-Core 0x00000000bd9d0000 + 4fd60b KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>17892</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>3420</ThreadID>
                <ThreadName>TaskGraphThreadNP 0</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>4336</ThreadID>
                <ThreadName>TaskGraphThreadNP 1</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>20856</ThreadID>
                <ThreadName>TaskGraphThreadNP 2</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>20896</ThreadID>
                <ThreadName>TaskGraphThreadNP 3</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>4668</ThreadID>
                <ThreadName>TaskGraphThreadNP 4</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>8540</ThreadID>
                <ThreadName>TaskGraphThreadNP 5</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>2308</ThreadID>
                <ThreadName>TaskGraphThreadNP 6</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>8228</ThreadID>
                <ThreadName>TaskGraphThreadNP 7</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19652</ThreadID>
                <ThreadName>TaskGraphThreadNP 8</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>14780</ThreadID>
                <ThreadName>TaskGraphThreadNP 9</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>11280</ThreadID>
                <ThreadName>TaskGraphThreadHP 10</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>8428</ThreadID>
                <ThreadName>TaskGraphThreadHP 11</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>3044</ThreadID>
                <ThreadName>TaskGraphThreadHP 12</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>20824</ThreadID>
                <ThreadName>TaskGraphThreadHP 13</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>17888</ThreadID>
                <ThreadName>TaskGraphThreadHP 14</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19932</ThreadID>
                <ThreadName>TaskGraphThreadHP 15</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>18452</ThreadID>
                <ThreadName>TaskGraphThreadHP 16</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>5648</ThreadID>
                <ThreadName>TaskGraphThreadHP 17</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>7260</ThreadID>
                <ThreadName>TaskGraphThreadHP 18</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>3560</ThreadID>
                <ThreadName>TaskGraphThreadHP 19</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19024</ThreadID>
                <ThreadName>TaskGraphThreadBP 20</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>1544</ThreadID>
                <ThreadName>TaskGraphThreadBP 21</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>1388</ThreadID>
                <ThreadName>TaskGraphThreadBP 22</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>3840</ThreadID>
                <ThreadName>TaskGraphThreadBP 23</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>18968</ThreadID>
                <ThreadName>TaskGraphThreadBP 24</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19140</ThreadID>
                <ThreadName>TaskGraphThreadBP 25</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>16492</ThreadID>
                <ThreadName>TaskGraphThreadBP 26</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>13356</ThreadID>
                <ThreadName>TaskGraphThreadBP 27</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>21272</ThreadID>
                <ThreadName>TaskGraphThreadBP 28</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89003 UE4Editor-Core 0x00000000bd9d0000 + 8a40d UE4Editor-Core 0x00000000bd9d0000 + 9254b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>20236</ThreadID>
                <ThreadName>TaskGraphThreadBP 29</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89d13 UE4Editor-Core 0x00000000bd9d0000 + 8a393 UE4Editor-Core 0x00000000bd9d0000 + 39b0fd UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>16420</ThreadID>
                <ThreadName>StatsThread</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>14664</ThreadID>
                <ThreadName>PoolThread 0</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>6452</ThreadID>
                <ThreadName>PoolThread 1</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>10804</ThreadID>
                <ThreadName>PoolThread 2</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>7856</ThreadID>
                <ThreadName>PoolThread 3</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>8272</ThreadID>
                <ThreadName>PoolThread 4</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>2652</ThreadID>
                <ThreadName>PoolThread 5</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>5964</ThreadID>
                <ThreadName>PoolThread 6</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>9696</ThreadID>
                <ThreadName>PoolThread 7</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>16508</ThreadID>
                <ThreadName>PoolThread 8</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>14788</ThreadID>
                <ThreadName>PoolThread 9</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>13276</ThreadID>
                <ThreadName>PoolThread 10</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>14180</ThreadID>
                <ThreadName>PoolThread 11</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>12932</ThreadID>
                <ThreadName>PoolThread 12</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>14344</ThreadID>
                <ThreadName>PoolThread 13</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>5696</ThreadID>
                <ThreadName>PoolThread 14</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>14112</ThreadID>
                <ThreadName>PoolThread 15</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>20972</ThreadID>
                <ThreadName>PoolThread 16</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>10032</ThreadID>
                <ThreadName>PoolThread 17</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>9956</ThreadID>
                <ThreadName>PoolThread 18</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>16028</ThreadID>
                <ThreadName>PoolThread 19</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>4480</ThreadID>
                <ThreadName>PoolThread 20</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>12764</ThreadID>
                <ThreadName>PoolThread 21</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-Core 0x00000000bd9d0000 + 2c3b25 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>17020</ThreadID>
                <ThreadName>FAsyncWriter_AbleTesting</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Media 0x0000000008600000 + 45cc UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>16912</ThreadID>
                <ThreadName>FMediaTicker</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9fa54 ntdll 0x000000001b220000 + 34060 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19300</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-HTTP 0x00000000b6470000 + 985ce UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>9780</ThreadID>
                <ThreadName>HttpManagerThread</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-WebSockets 0x00000000aac80000 + b5ce UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>13196</ThreadID>
                <ThreadName>LibwebsocketsThread</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19588</ThreadID>
                <ThreadName>PoolThread 22</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>7440</ThreadID>
                <ThreadName>PoolThread 23</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19028</ThreadID>
                <ThreadName>PoolThread 24</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19832</ThreadID>
                <ThreadName>PoolThread 25</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + b6095d nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>10064</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>13784</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>17996</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>18776</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>11260</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>1832</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>16664</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 3b8943 nvwgf2umx 0x00000000b6e60000 + 3b7b70 nvwgf2umx 0x00000000b6e60000 + 3aeded nvwgf2umx 0x00000000b6e60000 + c5e1da nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>692</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Messaging 0x000000009e220000 + 1f6fb UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>17204</ThreadID>
                <ThreadName>FMessageBus.DefaultBus.Router</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-Core 0x00000000bd9d0000 + 4feb9d UE4Editor-Engine 0x00000000abd70000 + 10140d6 UE4Editor-Engine 0x00000000abd70000 + 1047977 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>3752</ThreadID>
                <ThreadName>ShaderCompilingThread</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-DerivedDataCache 0x00000000cfb30000 + 2ad1a UE4Editor-DerivedDataCache 0x00000000cfb30000 + 270cb UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>21256</ThreadID>
                <ThreadName>FDDCCleanup</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-Core 0x00000000bd9d0000 + 4feb9d UE4Editor-AssetRegistry 0x00000000d7850000 + 4e97a UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>9184</ThreadID>
                <ThreadName>FAssetDataDiscovery</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-Core 0x00000000bd9d0000 + 4feb9d UE4Editor-AssetRegistry 0x00000000d7850000 + 501f6 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>9812</ThreadID>
                <ThreadName>FAssetDataGatherer</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>3632</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-Core 0x00000000bd9d0000 + 4feb9d UE4Editor-TcpMessaging 0x0000000095470000 + e537 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>3944</ThreadID>
                <ThreadName>FTcpMessageTransport</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-UdpMessaging 0x0000000095400000 + 24879 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>5700</ThreadID>
                <ThreadName>FUdpMessageProcessor</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-UdpMessaging 0x0000000095400000 + 24780 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>16352</ThreadID>
                <ThreadName>FUdpMessageBeacon</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-UdpMessaging 0x0000000095400000 + 24b1d UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>17144</ThreadID>
                <ThreadName>FUdpMessageProcessor.Sender</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 mswsock 0x0000000017900000 + 82ed mswsock 0x0000000017900000 + f07a WS2_32 0x000000001aab0000 + 11f7c UE4Editor-Sockets 0x00000000ce880000 + 120c9 UE4Editor-Sockets 0x00000000ce880000 + 19a7a UE4Editor-UdpMessaging 0x0000000095400000 + 2a126 UE4Editor-UdpMessaging 0x0000000095400000 + 24a70 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>15712</ThreadID>
                <ThreadName>UdpMessageMulticastReceiver</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 mswsock 0x0000000017900000 + 82ed mswsock 0x0000000017900000 + f07a WS2_32 0x000000001aab0000 + 11f7c UE4Editor-Sockets 0x00000000ce880000 + 120c9 UE4Editor-Sockets 0x00000000ce880000 + 19a7a UE4Editor-UdpMessaging 0x0000000095400000 + 2a126 UE4Editor-UdpMessaging 0x0000000095400000 + 24a70 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>14940</ThreadID>
                <ThreadName>UdpMessageUnicastReceiver</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-ProfilerService 0x0000000092510000 + ed82 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>10840</ThreadID>
                <ThreadName>FFileTransferRunnable</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>8312</ThreadID>
                <ThreadName>PoolThread 26</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>940</ThreadID>
                <ThreadName>PoolThread 27</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19484</ThreadID>
                <ThreadName>PoolThread 28</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>20960</ThreadID>
                <ThreadName>PoolThread 29</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>4884</ThreadID>
                <ThreadName>PoolThread 30</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 19c347 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>12740</ThreadID>
                <ThreadName>PoolThread 31</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9fa54 ntdll 0x000000001b220000 + 34060 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>16832</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9cc14 KERNELBASE 0x0000000018cd0000 + 58027 KERNELBASE 0x0000000018cd0000 + 57f0e XAudio2_7 0x00000000923c0000 + 32891 XAudio2_7 0x00000000923c0000 + 32b8a KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>16144</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9fa54 ntdll 0x000000001b220000 + 34060 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>4132</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-AudioMixerCore 0x00000000fcc70000 + 57d0 UE4Editor-AudioMixerCore 0x00000000fcc70000 + 55ca UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>11640</ThreadID>
                <ThreadName>AudioMixerRenderThread(1)</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-Core 0x00000000bd9d0000 + 4feb9d UE4Editor-AndroidDeviceDetection 0x0000000090dc0000 + bd8b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>11168</ThreadID>
                <ThreadName>FAndroidDeviceDetectionRunnable</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-Core 0x00000000bd9d0000 + 4feb9d UE4Editor-AndroidDeviceDetection 0x0000000090dc0000 + bd8b UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>1860</ThreadID>
                <ThreadName>FAndroidDeviceDetectionRunnable</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>5948</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19548</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>19492</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>9416</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>21496</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>20724</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9cc14 KERNELBASE 0x0000000018cd0000 + 58027 combase 0x000000001a770000 + 9b50b combase 0x000000001a770000 + 9b390 combase 0x000000001a770000 + 9b1bc combase 0x000000001a770000 + 9b13c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>9368</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9cc14 KERNELBASE 0x0000000018cd0000 + 58027 KERNELBASE 0x0000000018cd0000 + 57f0e nvwgf2umx 0x00000000b6e60000 + c24047 nvwgf2umx 0x00000000b6e60000 + c5e1da nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>15228</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>13404</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>14116</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>20708</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>15376</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>21084</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 nvwgf2umx 0x00000000b6e60000 + 4a4c76 nvwgf2umx 0x00000000b6e60000 + 1318c7c KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>21296</ThreadID>
                <ThreadName>Unknown</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-OnlineSubsystem 0x00000000aaf40000 + 13ab16 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>1736</ThreadID>
                <ThreadName>OnlineAsyncTaskThreadNull DefaultInstance(2)</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-Core 0x00000000bd9d0000 + 4feb9d UE4Editor-Engine 0x00000000abd70000 + 13cb572 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>10444</ThreadID>
                <ThreadName>ScreenSaverInhibitor</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c144 KERNELBASE 0x0000000018cd0000 + 38ba3 UE4Editor-Core 0x00000000bd9d0000 + 501d7f UE4Editor-Core 0x00000000bd9d0000 + 89d13 UE4Editor-Core 0x00000000bd9d0000 + 8a393 UE4Editor-RenderCore 0x0000000001f60000 + c5391 UE4Editor-RenderCore 0x0000000001f60000 + ce254 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>18252</ThreadID>
                <ThreadName>RenderThread 7</ThreadName>
            </Thread>
            <Thread>
                <CallStack>ntdll 0x000000001b220000 + 9c744 KERNELBASE 0x0000000018cd0000 + 46931 UE4Editor-Core 0x00000000bd9d0000 + 4feb9d UE4Editor-RenderCore 0x0000000001f60000 + ce3a8 UE4Editor-Core 0x00000000bd9d0000 + 5032ef UE4Editor-Core 0x00000000bd9d0000 + 502f94 KERNEL32 0x000000001a390000 + 17bd4 ntdll 0x000000001b220000 + 6ced1</CallStack>
                <IsCrashed>false</IsCrashed>
                <Registers />
                <ThreadID>8124</ThreadID>
                <ThreadName>RTHeartBeat 7</ThreadName>
            </Thread>
        </Threads>
        <TimeOfCrash>637191979678500000</TimeOfCrash>
        <bAllowToBeContacted>1</bAllowToBeContacted>
        <PlatformFullName>Win64 [Windows 10 (Release 1909)  64b]</PlatformFullName>
        <CrashReportClientVersion>1.0</CrashReportClientVersion>
        <Modules>C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\DbgHelp\dbghelp.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor.exe
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-HierarchicalLODOutliner.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-WorldBrowser.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SceneOutliner.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-CollectionManager.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-VirtualTexturingEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-FoliageEdit.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LandscapeEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MeshPaintMode.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GeometryMode.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TextureAlignMode.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-BspMode.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SequenceRecorderSections.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AutomationWorker.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\Steam\SteamVR\Binaries\Win64\UE4Editor-SteamVREditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\AudioCapture\Binaries\Win64\UE4Editor-AudioCaptureEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\MovieScene\MatineeToLevelSequence\Binaries\Win64\UE4Editor-MatineeToLevelSequence.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PlacementMode.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\MovieScene\LevelSequenceEditor\Binaries\Win64\UE4Editor-LevelSequenceEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\MovieScene\ActorSequence\Binaries\Win64\UE4Editor-ActorSequenceEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\WmfMedia\Binaries\Win64\UE4Editor-WmfMediaEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\WebMMedia\Binaries\Win64\UE4Editor-WebMMediaFactory.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\WebMMedia\Binaries\Win64\UE4Editor-WebMMediaEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\MediaPlayerEditor\Binaries\Win64\UE4Editor-MediaPlayerEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\MediaCompositing\Binaries\Win64\UE4Editor-MediaCompositingEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SequenceRecorder.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UE4Editor-ImgMediaEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\AvfMedia\Binaries\Win64\UE4Editor-AvfMediaFactory.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\AvfMedia\Binaries\Win64\UE4Editor-AvfMediaEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\AndroidMedia\Binaries\Win64\UE4Editor-AndroidMediaFactory.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\AndroidMedia\Binaries\Win64\UE4Editor-AndroidMediaEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeapMedia\Binaries\Win64\UE4Editor-MagicLeapMediaCodecFactory.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeapMedia\Binaries\Win64\UE4Editor-MagicLeapMediaFactory.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeapMedia\Binaries\Win64\UE4Editor-MagicLeapMediaEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\CharacterAI\Binaries\Win64\UE4Editor-CharacterAI.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\2D\Paper2D\Binaries\Win64\UE4Editor-SmartSnapping.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SessionServices.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SessionMessages.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ViewportSnapping.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SkeletalMeshEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ClothPainter.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LogVisualizer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-IntroTutorials.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Lumin\UE4Editor-LuminPlatformEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\IOS\UE4Editor-IOSPlatformEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Android\UE4Editor-AndroidDeviceDetection.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Android\UE4Editor-AndroidPlatformEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-WindowsPlatformEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Lumin\UE4Editor-LuminRuntimeSettings.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\IOS\UE4Editor-IOSRuntimeSettings.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-EditorInteractiveToolsFramework.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TimeManagementEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-InputBindingEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MergeActors.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LocalizationService.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LocalizationDashboard.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-DeviceProfileEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-UndoHistory.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ProjectTargetPlatformEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ProjectSettingsViewer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-EditorSettingsViewer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SettingsEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ProjectLauncher.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SessionFrontend.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ProfilerClient.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TargetDeviceServices.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-DeviceManager.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AutomationWindow.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PackagesDialog.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AnimationBlueprintEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-StructViewer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Toolbox.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ModuleUI.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-OutputLog.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GammaUI.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Documentation.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LiveCoding.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-StreamingPauseRendering.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LauncherPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PortalServices.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PortalRpc.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MessagingRpc.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioMixerXAudio2.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AITestSuite.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ProfilerService.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ProfilerMessages.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TaskGraph.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Tests\ScreenshotTools\Binaries\Win64\UE4Editor-ScreenshotTools.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\ProceduralMeshComponent\Binaries\Win64\UE4Editor-ProceduralMeshComponentEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\Oculus\OculusVR\Binaries\Win64\UE4Editor-OculusEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Android\UE4Editor-AndroidRuntimeSettings.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\Oculus\OculusVR\Binaries\Win64\UE4Editor-OculusInput.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\Oculus\OculusVR\Binaries\Win64\UE4Editor-OculusMR.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\MobilePatchingUtils\Binaries\Win64\UE4Editor-MobilePatchingUtils.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\EditableMesh\Binaries\Win64\UE4Editor-EditableMesh.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GeometryCollectionEngine.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\CustomMeshComponent\Binaries\Win64\UE4Editor-CustomMeshComponent.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\CableComponent\Binaries\Win64\UE4Editor-CableComponent.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioCaptureRtAudio.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\AudioCapture\Binaries\Win64\UE4Editor-AudioCapture.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioCaptureCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\AssetTags\Binaries\Win64\UE4Editor-AssetTags.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\ArchVisCharacter\Binaries\Win64\UE4Editor-ArchVisCharacter.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\AppleImageUtils\Binaries\Win64\UE4Editor-AppleImageUtilsBlueprintSupport.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\AppleImageUtils\Binaries\Win64\UE4Editor-AppleImageUtils.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\AndroidPermission\Binaries\Win64\UE4Editor-AndroidPermission.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\NetcodeUnitTest\NUTUnrealEngine4\Binaries\Win64\UE4Editor-NUTUnrealEngine4.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\NetcodeUnitTest\NetcodeUnitTest\Binaries\Win64\UE4Editor-NetcodeUnitTest.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-StandaloneRenderer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\MediaCompositing\Binaries\Win64\UE4Editor-MediaCompositing.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UE4Editor-ImgMedia.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UE4Editor-OpenExrWrapper.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\ImgMedia\Binaries\Win64\UE4Editor-ImgMediaFactory.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Marketplace\ElectronicNodes\Binaries\Win64\UE4Editor-ElectronicNodes.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapHelperOpenGL.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapAudio.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\FX\Niagara\Binaries\Win64\UE4Editor-NiagaraEditorWidgets.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\GeometryCache\Binaries\Win64\UE4Editor-GeometryCacheSequencer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\GeometryCache\Binaries\Win64\UE4Editor-GeometryCacheTracks.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\BackChannel\Binaries\Win64\UE4Editor-BackChannel.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\AutomationUtils\Binaries\Win64\UE4Editor-AutomationUtilsEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\AutomationUtils\Binaries\Win64\UE4Editor-AutomationUtils.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\GeometryCache\Binaries\Win64\UE4Editor-GeometryCacheEd.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\AlembicImporter\Binaries\Win64\UE4Editor-AlembicImporter.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\AlembicImporter\Binaries\Win64\UE4Editor-AlembicLibrary.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\AlembicImporter\Binaries\Win64\hdf5.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\GeometryCache\Binaries\Win64\UE4Editor-GeometryCache.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Enterprise\VariantManagerContent\Binaries\Win64\UE4Editor-VariantManagerContentEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Enterprise\DatasmithContent\Binaries\Win64\UE4Editor-DatasmithContentEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\SpeedTreeImporter\Binaries\Win64\UE4Editor-SpeedTreeImporter.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\PluginBrowser\Binaries\Win64\UE4Editor-PluginBrowser.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\MobileLauncherProfileWizard\Binaries\Win64\UE4Editor-MobileLauncherProfileWizard.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LauncherServices.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\MaterialAnalyzer\Binaries\Win64\UE4Editor-MaterialAnalyzer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\CurveEditorTools\Binaries\Win64\UE4Editor-CurveEditorTools.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\CryptoKeys\Binaries\Win64\UE4Editor-CryptoKeys.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\CryptoKeys\Binaries\Win64\UE4Editor-CryptoKeysOpenSSL.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\VisualStudioSourceCodeAccess\Binaries\Win64\UE4Editor-VisualStudioSourceCodeAccess.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\VisualStudioCodeSourceCodeAccess\Binaries\Win64\UE4Editor-VisualStudioCodeSourceCodeAccess.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\UObjectPlugin\Binaries\Win64\UE4Editor-UObjectPlugin.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\SubversionSourceControl\Binaries\Win64\UE4Editor-SubversionSourceControl.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\PlasticSourceControl\Binaries\Win64\UE4Editor-PlasticSourceControl.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\PerforceSourceControl\Binaries\Win64\UE4Editor-PerforceSourceControl.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\GitSourceControl\Binaries\Win64\UE4Editor-GitSourceControl.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\CLionSourceCodeAccess\Binaries\Win64\UE4Editor-CLionSourceCodeAccess.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\AnimationSharing\Binaries\Win64\UE4Editor-AnimationSharingEd.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\ActorLayerUtilities\Binaries\Win64\UE4Editor-ActorLayerUtilitiesEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Layers.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\ActorLayerUtilities\Binaries\Win64\UE4Editor-ActorLayerUtilities.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Blendables\LightPropagationVolume\Binaries\Win64\UE4Editor-LightPropagationVolumeEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\2D\Paper2D\Binaries\Win64\UE4Editor-PaperTiledImporter.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\2D\Paper2D\Binaries\Win64\UE4Editor-PaperSpriteSheetImporter.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\2D\Paper2D\Binaries\Win64\UE4Editor-Paper2DEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MeshPaint.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\RuntimePhysXCooking\Binaries\Win64\UE4Editor-RuntimePhysXCooking.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\PhysXVehicles\Binaries\Win64\UE4Editor-PhysXVehiclesEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\PhysXVehicles\Binaries\Win64\UE4Editor-PhysXVehicles.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\LocationServicesBPLibrary\Binaries\Win64\UE4Editor-LocationServicesBPLibrary.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\MovieScene\ActorSequence\Binaries\Win64\UE4Editor-ActorSequence.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Messaging\UdpMessaging\Binaries\Win64\UE4Editor-UdpMessaging.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Messaging\TcpMessaging\Binaries\Win64\UE4Editor-TcpMessaging.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Serialization.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Cbor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Marketplace\AutoSettings\Binaries\Win64\UE4Editor-AutoSettings.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Marketplace\Able\Binaries\Win64\UE4Editor-AbleEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Marketplace\Able\Binaries\Win64\UE4Editor-AbleCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Marketplace\Able\Binaries\Win64\UE4Editor-Able.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapIdentity.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapSecureStorage.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapImageTracker.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapHandTracking.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LiveLinkInterface.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapHandMeshing.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapEyeTracker.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-EyeTracker.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapController.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapARPin.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapAR.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapPlanes.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\FX\Niagara\Binaries\Win64\UE4Editor-NiagaraAnimNotifies.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\FX\Niagara\Binaries\Win64\UE4Editor-NiagaraEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\FX\Niagara\Binaries\Win64\UE4Editor-Niagara.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\GameplayTagsEditor\Binaries\Win64\UE4Editor-GameplayTagsEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\FacialAnimation\Binaries\Win64\UE4Editor-FacialAnimationEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\FacialAnimation\Binaries\Win64\UE4Editor-FacialAnimation.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\DataValidation\Binaries\Win64\UE4Editor-DataValidation.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Blutility.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PixelInspectorModule.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-HotReload.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MainFrame.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TranslationEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LocalizationCommandletExecution.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Editor\AssetManagerEditor\Binaries\Win64\UE4Editor-AssetManagerEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TreeMap.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Developer\AnimationSharing\Binaries\Win64\UE4Editor-AnimationSharing.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\SignificanceManager\Binaries\Win64\UE4Editor-SignificanceManager.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Blendables\LightPropagationVolume\Binaries\Win64\UE4Editor-LightPropagationVolumeRuntime.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\2D\Paper2D\Binaries\Win64\UE4Editor-Paper2D.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\WindowsMoviePlayer\Binaries\Win64\UE4Editor-WindowsMoviePlayer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\WebMMoviePlayer\Binaries\Win64\UE4Editor-WebMMoviePlayer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\WebMMedia\Binaries\Win64\UE4Editor-WebMMedia.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-NetworkReplayStreaming.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\PhysX3\Win64\VS2015\NvClothPROFILE_x64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MediaAssets.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-OverlayEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Overlay.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-StringTableEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GameplayTasksEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-BehaviorTreeEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AIGraph.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-FunctionalTesting.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AutomationController.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AutomationMessages.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-WorkspaceMenuStructure.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-CollisionAnalyzer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MessageLog.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AssetTools.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-UMGEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-DetailCustomizations.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-DataTableEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioSettingsEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ComponentVisualizers.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Persona.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PinnedCommandList.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ConfigEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-InternationalizationSettings.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SlateReflector.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LandscapeEditorUtilities.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SourceCodeAccess.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-XAudio2.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MeshBoneReduction.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\SkeletalReduction\Binaries\Win64\UE4Editor-SkeletalMeshReduction.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\ProxyLODPlugin\Binaries\Win64\UE4Editor-ProxyLODMeshReduction.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-QuadricMeshReduction.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MeshMergeUtilities.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MeshUtilities.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MeshBuilderCommon.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\embree.2.14.0.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64	bb.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-VulkanShaderFormat.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ShaderFormatVectorVM.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-VectorVM.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MetalShaderFormat.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ShaderFormatOpenGL.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ShaderFormatD3D.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ShaderPreprocessor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ShaderCompilerCommon.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TextureFormatDXT.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\IntelISPCTexComp\Win64-Release\ispc_texcomp.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ImageWrapper.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\Qualcomm\Win64\TextureConverter.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioFormatOpus.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TextureFormatIntelISPCTexComp.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\Vorbis\Win64\VS2015\libvorbis_64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioFormatOgg.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioFormatADPCM.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-WindowsServerTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-WindowsClientTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-WindowsTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-WindowsNoEditorTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Lumin\UE4Editor-LuminTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Linux\UE4Editor-LinuxAArch64ServerTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Linux\UE4Editor-LinuxAArch64ClientTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Linux\UE4Editor-LinuxAArch64NoEditorTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Linux\UE4Editor-LinuxServerTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Linux\UE4Editor-LinuxClientTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Linux\UE4Editor-LinuxNoEditorTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Messaging.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\IOS\UE4Editor-IOSTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\PhysX3\Win64\VS2015\APEX_ClothingPROFILE_x64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\PhysX3\Win64\VS2015\APEX_LegacyPROFILE_x64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\PhysX3\Win64\VS2015\APEXFrameworkPROFILE_x64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\Android\UE4Editor-AndroidTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Settings.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\PhysX3\Win64\VS2015\PhysX3CookingPROFILE_x64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\PhysX3\Win64\VS2015\PhysX3PROFILE_x64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\PhysX3\Win64\VS2015\PxPvdSDKPROFILE_x64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\PhysX3\Win64\VS2015\PhysX3CommonPROFILE_x64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-FieldSystemEngine.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ChaosSolverEngine.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-WindowsPlatformFeatures.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GameplayMediaEncoder.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\Steam\SteamVR\Binaries\Win64\UE4Editor-SteamVRInputDevice.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\OpenVR\OpenVRv1_5_17\Win64\openvr_api.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\Steam\SteamVR\Binaries\Win64\UE4Editor-SteamVR.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\ProceduralMeshComponent\Binaries\Win64\UE4Editor-ProceduralMeshComponent.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\Oculus\OculusVR\Binaries\Win64\UE4Editor-OculusHMD.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Online\OnlineSubsystemUtils\Binaries\Win64\UE4Editor-OnlineBlueprintSupport.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Online\OnlineSubsystemNull\Binaries\Win64\UE4Editor-OnlineSubsystemNull.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Networking.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\Steamworks\Steamv146\Win64\steam_api64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Online\OnlineSubsystemSteam\Binaries\Win64\UE4Editor-OnlineSubsystemSteam.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Online\OnlineSubsystemUtils\Binaries\Win64\UE4Editor-OnlineSubsystemUtils.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Voice.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\Steam\SteamShared\Binaries\Win64\UE4Editor-SteamShared.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-XMPP.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-WebSockets.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Online\OnlineSubsystem\Binaries\Win64\UE4Editor-OnlineSubsystem.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\WmfMedia\Binaries\Win64\UE4Editor-WmfMedia.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeap.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapPrivileges.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-VulkanRHI.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\FX\Niagara\Binaries\Win64\UE4Editor-NiagaraVertexFactories.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\FX\Niagara\Binaries\Win64\UE4Editor-NiagaraShader.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Enterprise\DatasmithContent\Binaries\Win64\UE4Editor-DatasmithContent.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Enterprise\VariantManagerContent\Binaries\Win64\UE4Editor-VariantManagerContent.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AIModule.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\PlatformCrypto\Binaries\Win64\UE4Editor-PlatformCryptoOpenSSL.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Engine.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Media\WmfMedia\Binaries\Win64\UE4Editor-WmfMediaFactory.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\FX\Niagara\Binaries\Win64\UE4Editor-NiagaraCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GameplayTasks.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GameplayDebugger.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AnimationModifiers.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\libsndfile\Win64\libsndfile-1.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty
vTextureTools\Win64
vtt_64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TextureCompressor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SlateRHIRenderer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-OpenGLDrv.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\NVIDIA\NVaftermath\Win64\GFSDK_Aftermath_Lib.x64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-D3D11RHI.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-CookedIterativeFile.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-StreamingFile.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-NetworkFile.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AVIWriter.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-XmlParser.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MovieSceneCapture.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MovieSceneTools.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ContentBrowser.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-CommonMenuExtensions.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SourceControlWindows.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-BlueprintCompilerCppBackend.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MeshReductionInterface.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MRMesh.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Navmesh.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SSL.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ClothingSystemRuntimeNv.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Sequencer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LevelEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AnimationCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AnimGraphRuntime.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Renderer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-HTTP.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GameProjectGeneration.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GraphEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-DesktopWidgets.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ClassViewer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PropertyEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\libfbxsdk.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AugmentedReality.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GeometryCollectionCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MaterialEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-KismetWidgets.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-KismetCompiler.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-EditorStyle.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-NullInstallBundleManager.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-EditorWidgets.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-BlueprintGraph.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Kismet.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-UnrealEd.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Core.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-NavigationSystem.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-UMG.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AppFramework.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Chaos.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PIEPreviewDeviceSpecification.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-HardwareTargeting.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-WidgetCarousel.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MaterialBaking.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SlateCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-CoreUObject.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TimeManagement.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SceneDepthPickerMode.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-UELibSampleRate.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AdvancedPreviewScene.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MovieSceneTracks.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-FileUtilities.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-BlueprintNativeCodeGen.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-InteractiveToolsFramework.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-FieldSystemCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SharedSettingsWidgets.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TextureFormatUncompressed.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AnimGraph.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ActorPickerMode.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Voronoi.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Sockets.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MeshUtilitiesCommon.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-UnrealAudio.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GeometryCollectionSimulationCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-HTTPServer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SourceControl.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-DirectoryWatcher.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ToolMenus.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-DerivedDataCache.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-VREditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PropertyPath.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ViewportInteraction.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SandboxFile.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TextureFormatPVR.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MovieScene.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ScriptDisassembler.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PakFileUtilities.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Landscape.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PIEPreviewDeviceProfileSelector.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-BuildPatchServices.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TextureFormatASTC.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AddContentDialog.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ClothingSystemRuntimeCommon.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TextureFormatAndroid.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Localization.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Foliage.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\Ogg\Win64\VS2015\libogg_64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\IOS\UE4Editor-TVOSTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MaterialUtilities.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-HeadMountedDisplay.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-CurveEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LaunchDaemonMessages.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ClothingSystemEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-JsonUtilities.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-StatsViewer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PhysicsCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AllDesktopTargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ChaosSolvers.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-HierarchicalLODUtilities.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TargetPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PhysXCooking.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SwarmInterface.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SkeletalMeshUtilitiesCommon.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-LevelSequence.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\PhysX3\Win64\VS2015\PxFoundationPROFILE_x64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-CinematicCamera.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\Steam\SteamVR\Binaries\Win64\UE4Editor-SteamVRInput.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AssetTagsEditor.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ClothingSystemRuntimeInterface.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AssetRegistry.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MeshDescription.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Runtime\ExampleDeviceProfileSelector\Binaries\Win64\UE4Editor-ExampleDeviceProfileSelector.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-CrunchCompression.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Slate.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PhysicsSQ.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Portal\LauncherChunkInstaller\Binaries\Win64\UE4Editor-LauncherChunkInstaller.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PakFile.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SignalProcessing.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-GameplayTags.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioMixer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-StaticMeshDescription.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PacketHandler.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioPlatformConfiguration.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-EngineSettings.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Lumin\MagicLeap\Binaries\Win64\UE4Editor-MagicLeapHelperVulkan.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-EngineMessages.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-NetCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ClothingSystemEditorInterface.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ImageCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PerfCounters.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MeshDescriptionOperations.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MaterialShaderQualitySettings.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-DesktopPlatform.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-RawMesh.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\AI\AISupport\Binaries\Win64\UE4Editor-AISupportModule.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-XGEController.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-PreLoadScreen.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\PlatformCrypto\Binaries\Win64\UE4Editor-PlatformCrypto.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AudioMixerCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Plugins\Experimental\PlatformCrypto\Binaries\Win64\UE4Editor-PlatformCryptoTypes.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ApplicationCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-SerializedRecorderInterface.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-AnalyticsET.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-RHI.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-RenderCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Json.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-RSA.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ReliabilityHandlerComponent.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-EditorAnalyticsSession.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Projects.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-InputCore.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Media.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-ImageWriteQueue.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MediaUtils.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-EditorSubsystem.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-InstallBundleManager.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-MoviePlayer.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-UnrealEdMessages.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-Analytics.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-BuildSettings.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\ThirdParty\Vorbis\Win64\VS2015\libvorbisfile_64.dll
C:\Program Files\Epic Games\UE_4.24\Engine\Binaries\Win64\UE4Editor-TraceLog.dll</Modules>
    </RuntimeProperties>
    <PlatformProperties>
        <PlatformIsRunningWindows>1</PlatformIsRunningWindows>
        <IsRunningOnBattery>true</IsRunningOnBattery>
        <PlatformCallbackResult>0</PlatformCallbackResult>
    </PlatformProperties>
    <EngineData>
        <RHI.RHIName>D3D11</RHI.RHIName>
        <RHI.AdapterName>NVIDIA GeForce GTX 1050 Ti</RHI.AdapterName>
        <RHI.UserDriverVersion>442.50</RHI.UserDriverVersion>
        <RHI.InternalDriverVersion>26.21.14.4250</RHI.InternalDriverVersion>
        <RHI.DriverDate>2-24-2020</RHI.DriverDate>
        <RHI.FeatureLevel>SM5</RHI.FeatureLevel>
    </EngineData>
    <GameData />
    <EnabledPlugins>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Paper2D" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "AISupport" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "LightPropagationVolume" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Actor Layer Utilities" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Animation Sharing" }</Plugin>
        <Plugin>{ "Version": 2, "VersionName": "2.0", "FriendlyName": "CLion Integration" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "CodeLite Integration" }</Plugin>
        <Plugin>{ "Version": 14, "VersionName": "1.4", "FriendlyName": "Git" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "KDevelop Integration" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Linux Compiler-only Integration" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Perforce" }</Plugin>
        <Plugin>{ "Version": 40, "VersionName": "1.4.6", "FriendlyName": "Plastic SCM" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Subversion" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "UObject Example Plugin" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Visual Studio Code Integration" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Visual Studio Integration" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "XCode Integration" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Asset Manager Editor" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "CryptoKeys" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Curve Editor Tools" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Data Validation" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Facial Animation Bulk Importer" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "GameplayTagsEditor" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Mac Graphics Switching" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Material Analyzer" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Wizard for mobile packaging scenarios" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Plugin Browser" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "SpeedTree Importer" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Datasmith Content" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Variant Manager Content" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "0.1", "FriendlyName": "Alembic Importer (Experimental)" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "0.1", "FriendlyName": "Automation Utilities" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1", "FriendlyName": "BackChannel" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "0.1", "FriendlyName": "CharacterAI" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "0.1", "FriendlyName": "Geometry Cache (Experimental)" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Platform Cryptography Plugin" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "0.1", "FriendlyName": "Proxy LOD Plugin (Experimental)" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Skeletal Mesh Simplifier (Early Access)" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Niagara" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Magic Leap" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Magic Leap Media Player" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "MLSDK" }</Plugin>
        <Plugin>{ "Version": 43, "VersionName": "3.25", "FriendlyName": "Able" }</Plugin>
        <Plugin>{ "Version": 21, "VersionName": "1.8", "FriendlyName": "Auto Settings" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "2.4", "FriendlyName": "Electronic Nodes" }</Plugin>
        <Plugin>{ "Version": 2, "VersionName": "2.0", "FriendlyName": "Android Media Player" }</Plugin>
        <Plugin>{ "Version": 2, "VersionName": "2.0", "FriendlyName": "AVF Media Player" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Image Sequence Media Player" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Media Compositing" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Media Player Editor" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "WebM Video Player" }</Plugin>
        <Plugin>{ "Version": 2, "VersionName": "2.0", "FriendlyName": "WMF Media Player" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "TCP Messaging" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "UDP Messaging" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "0.1", "FriendlyName": "Actor Sequence (Experimental)" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Level Sequence Editor" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Matinee to Level Sequence" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Netcode Unit Test" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Netcode Unit Test - Unreal Engine 4" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Online Subsystem GooglePlay" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Online Subsystem iOS" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Online Subsystem" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Online Subsystem NULL" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.1", "FriendlyName": "Online Subsystem Steam" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Online Subsystem Utils" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Launcher Chunk Installer" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Android Device Profile Selector" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Android Movie Player" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "0.1", "FriendlyName": "Android Runtime Permission" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Apple Image Utils" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Apple Movie Player" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "ArchVis Character" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Asset Tags" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Audio Capture" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Cable Component" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Custom Mesh Component" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Editable Mesh" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Example Device Profile Selector" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Google Cloud Messaging" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "IOS Device Profile Selector" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Linux Device Profile Selector" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Mobile Location Services Blueprints Library" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Mobile Patching Utilities" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.41.0", "FriendlyName": "Oculus VR" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "PhysX Vehicles" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Custom Splash Preload Screen" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Procedural Mesh Component" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Runtime PhysX Cooking" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Significance Manager" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Steam Shared Module" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "SteamVR" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Movie Player for WebM files" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "Windows Movie Player" }</Plugin>
        <Plugin>{ "Version": 1, "VersionName": "1.0", "FriendlyName": "ScreenshotTools" }</Plugin>
    </EnabledPlugins>
</FGenericCrashContext>

@ Wanted to report a couple of issues. First, it looks like BTTask_PlayAbility & BTTask_StopAbility don’t implement void InitializeFromAsset, so they never resolve the AbilityKey.
Second, I’m seeing some weird stuff with the cone target requirement. This is what I see:
20200307_132402.jpg

If I put the player in the cone that shows up in front, the ability misses, but if he is to the left of the AI, then it hits. Here are my settings, which are pretty simple:

It seems like maybe the Query Forward is off.

One final thing is that, at least the cone check, will add actors to the target list multiple times. Perhaps use AddUnique?

Thanks

EDIT: Interestingly, if I try this in the ability editor it works when I’m standing in the cone. I get a different value for QueryToTargetDotProduct in that case though. Also, that one time it worked was an anomaly, so I can’t get it to hit at all right now. I’ll let you know if I figure it out.

Yeah, I dunno man. I switch to a box and it works fine. Cone, not so much.

Are you able to send me the project you’re using so I can repro this locally and debug the crash? You can drop the files here: Dropbox

So it’s just the debug visualization that is off? Or in-game it’s off as well? I haven’t touched that code recently, but I can double check things. Also I’ll fix up the Tasks. Thanks for the heads up.

It wasn’t working in the game as a cone. It worked as a box mostly, but even that seemed to depend on which direction I was facing and whether it was attached to a socket and using socket rotation or just using the position/rotation of the unit. I poked around at it for quite a bit and then just went another route. My AI already has the target on the blackboard so I overrode FindTargets and get that target instead.

Hello, I just started implementing able into my project, first of all I was impressed how powerful it is across the network but. Event with right setup for collision channels or objects, collisions doesn’t seem to be working correctly on 4.24.3. Pretty much they do not work for me and even in your demo which is thing that needs to be fixed asap. Or is it possibly problem only on my side? Thank you for response.

Collisions definitely work. Check and make sure BOTH objects are marked as “Enable Overlap Queries”, if one or the other isn’t - the collision is ignored. Also double check your collision layer info (Although 9 times out of 10, it’s that both objects weren’t marked as Enable Overlaps).

Well, I would not have been asking if I haven’t tried that yet in all possible ways. There is a screen if my setup.

Ah, another user was reporting Cone/Queries were off by 90 degrees. See what happens if you turn your guy to the left or right of where the debug visualization is showing. If that’s the issue, I’ll get a fix in - I’m still trying to repro this locally, so having your actual parameters is a great help.

Well that doesn’t work as well. I was trying to setup FOV around 360° after I saw that post. Or even using box collision with scale around 4 meters, nothing. Then I tried to remove plugin from engine and put it back once again - same result. So, if there are no issues within Queries in code, then there must be something wrong with debug visualization or Queries translation? Also, I noticed that ability editor doesn’t using Relative rotation for previewed actor, is that supposed to be correct behavior?

Define “Relative Rotation”. It you point it to a blueprint for the preview actor, it’ll just instantiate that blueprint - rotation and all. If you just point it to a static/skeletal mesh, then it builds an actor on the fly so the rotation can be off. There is a rotation option in the Able Editor Settings that you can use to rotate the static mesh to point in the correct location.

There could be a translation issue on the query, it’s happened in the past but I haven’t had any reports in forever until this last week so that’s why I’m a bit confused on this popping up, that code hasn’t changed on my end. An easy way to test is to just setup a sphere query, put it on yourself (so no translation, rotation, etc) and just set the radius up pretty high. If that works, but then you try and translate it out a bit - then it’s a translation bug, otherwise it could be a setup issue with the collision actor data.

Thank you, that is useful info.

Tested out, and nothing happened :-/. So, i guess it’s gonna be problem with collision actor data setup but in fact that I have correct collision query settings as you can see from screenshots?

I think I see the issue, you’re using a custom layer (by using the custom preset), but have the object type set to Pawn. That task searches by Layer, not object. Try setting both objects to the Pawn Layer, or World Dynamic and see if they see each other…

Tested, because all my character are parent of one character blueprint, I setted up default collision response to pawn for both and deleted my custom “clickable” collision channel to check if custom channels are not causing the problem. Also didin’t worked, simply it does nothing.

I fixed it for now by spawning actor with sphere collision to check overlap and do damage on overlap (works totally normal). But that is not reason why I bought your plugin. So, there is definietly gonna be some problem in code whether it is visualization, translation or other bug.

Also as I mentioned, I downloaded your example shooter project and it doesn’t worked as well on 4.24.3, one possibility is that damage is not firing or collision is not working correctly.

Hmm… Alright, let me toss together a quick collision test level and see what I find. Once I have it done, I’ll share it out as well if you want to compare settings.

@michalss Here ya go, try and open this project. The collision is all working for me locally, you can see I laid out a bunch of various collision types (you can hit ~ and type “Able.DrawQueryDebug 1” to see the shapes being rendered).

I set up a simple “hit reaction” (basically just the explosion particle effect) anytime the character takes damage, which the queries apply. You can move the characters out of range to verify.

Cone, Sphere, and Box are all tested in this level and appear to be working.

That actu

Yes, that actually works. Thank you for preview, I’ll try the same setup in my project and then give you some feedback.

Hey !
First of all, it’s an amazing plugin, really makes everything way easier. However, I’ve encountered pretty much the same problem, as was described by OneSaltyBoy, where whenever I try to use a custom ability in a standalone game, i get a following crash:
Fatal error: [File:D:/Build/++UE4/Sync/Engine/Source/Runtime/CoreUObject/Private/Templates/Casts.cpp] [Line: 10] Cast of nullptr to AblAbilityTaskScratchPad failed
My CreateScratchPadBP is overloaded.