Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

[WIP] Octree in Pure ECS : BufferArray based with source code (U2020.1a - Entities 0.2)

Discussion in 'Entity Component System' started by Antypodish, Aug 21, 2018.

  1. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    I am, glad finding useful :)

    I haven't run comparison, neither I had plan to.
    To be honest, not sure how I would test raycasting of physX vs ECS octree based approach.
    I suspect method would be, to to place n * 10 thousands of objects in the scene, for each approach, and test raycast then.

    In my case, each octree is static structure stored in own entity. Meaning octree physically never moves, nor rotates. Each octree entity, has buffer arrays, holding structure of nodes. Every node, which is always AABB, stores reference to entity as an option. Technically, don't have to be entity reference. Can be any arbitrary index, to something you like. I.e. to array.
    I would suspect, some similar approach is taken with physX. Then testing OBB vs AABB
    Only thing is moving, is ray for casting, or collision test boundary.

    But in this case, these referenced entities, has mesh component and transform, allowing for rendering.
    Then I take ray cast from mouse, and translate its position and rotation (as per last video), relative to the entity (s) mesh. That relative rotation of ray, is actually applied for the octree.

    To be honest, I am not familiar with MultiBox. But yes, I haven't been optimizing it for boxes / mesh collisions. Providing I got term right, CSG (Constructive Solid Geometry) probably is better fit, for voxel structures is such case.
     
    Last edited: Feb 16, 2019
    MD_Reptile likes this.
  2. DavidSWu

    DavidSWu

    Joined:
    Jun 20, 2016
    Posts:
    183
    It is smart to focus on a specialized solution to your problems. PhysX has to support a general solution that will gracefully handle all sorts of objects and any sort of sparse or dense situation.
    So given time, smarts and diligence I expect that you could outperform them within your problem domain.
    Especially with ECS being compiled down to optimized C++, managed, garbage collected code (even with IL2CPP) has always been a limitation for custom low-level solutions.
    Additionally, your API layer could be a lot more efficient as you can handle the interactions that you want and need and not try to support general purpose callbacks on Unity's main thread.

    It would be nice if Unity as a whole was not such a thread hostile an environment. You can't even do UnityWebRequests completely in a background thread. (most of the heavy lifting is in a background thread, but you still have to bounce back and forth between threads if you want to parse your response in the background).
     
    Last edited: Feb 20, 2019
  3. Liburia

    Liburia

    Joined:
    Jun 24, 2013
    Posts:
    10
    Hey. I'm looking at the Linearized octree MonoBevaiour file BoundsOctree.cs and I can't figure out how you can get a node on demand.

    Let's say I want to get the node that intersects a ray. How would I do it in your system?
     
  4. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    Hi,

    Linearized part is only for testing and debugging as intermediate stage to ECS.
    Shouldn't really be used.

    But if you want look into it, it follows similar principles, as
    OOP-TestingStage/Originals/

    You can see in TestOctree_origin.cs line 116
    Code (CSharp):
    1. bool isColliding = boundsOctree.IsColliding ( ray, out i_instanceIndex, 1000 ) ;
    But there is also GetColliding with ray.
    See in BoundsOctree_origin.cs, line 142
    Code (CSharp):
    1. public void GetColliding(List<T> collidingWith, Ray checkRay, float maxDistance = float.PositiveInfinity)
    So in BoundOctree.cs, line 390, corresponding method is
    Code (CSharp):
    1. public void _GetOctreeColliding ( ref List <int> l_collidingWith, Ray checkRay, out int i_nearestIndex, out float f_nearestDistance, float f_maxDistance = float.PositiveInfinity )

    Just small notice, I found bug with ECS, which I fixed, but forgot to update OOP Linearzied (debugging) version. Hence it is still there in OOP. (But not in original files.)
     
    Liburia likes this.
  5. Liburia

    Liburia

    Joined:
    Jun 24, 2013
    Posts:
    10
    Thank you. I think I understand how you get nodes without iterating. "l_nodeInstancesIndex" is a fully flattened array of all node indices with the size of the maximum depth octree. The ones not existing are set to -1, and you can access the one you want since it's full depth/max size, therefore allowing you to just calculate the needed index.
     
  6. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    Nearly.

    Only that you need take note, there are nodes and instances.
    Nodes are representing structure of the octree.
    Each node, can have 8 children nodes.

    Instances are representing objects (see Originals files).
    In original scripts, when you for example raycast, objects were returned, then you could pass into dictionary, or whatever you needed to do with an objects.
    But ECS don't work with objects. So I used instances storing integers.
    In my project, I modified instance list, to store entities values, both index and version.
    When you raycast through octree nodes, this instance (s) are returned.
    You can use them for whatever you like.
    For example Dictionary, or list.
    You may need to ensure, that instances ints are unique, when instances to nodes are added.

    Each node can have n number of instances (default 1).
    Line 74 in BoundOctree.cs
    Code (CSharp):
    1. const int numInstancesAllowed = 1 ;
    But once value is set, it stays constant per octree.
    So every node can accept up to n objects.
    When exceeding that number, octree node splits, into 8 child nodes.
    Providing minimum node size is not exceeded.

    So yes, children nodes indexes are simply stored in the list, as well as instances ints.
    If I remember correct, you can access first instance of the node, by passing node index, multiplied by numInstancesAllowed. Then you can get further instances of the node (if more than one allowed) by adding offset +1, +2, +3 etc.

    Similarly node children. But this is a bit more complex. But children are grouped of 8, "somewhere" (where spare space was available) in the list.

    Lists length only grows when needed.
     
    Liburia likes this.
  7. Sylmerria

    Sylmerria

    Joined:
    Jul 2, 2012
    Posts:
    369
    @Antypodish Do you have plans for update inject and co ? Nice work by the way
     
    NeatWolf likes this.
  8. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    Thx for mentioning injects.
    Probably I will do at some point. However, it wasn't my priority atm.
     
    twobob, NeatWolf and Sylmerria like this.
  9. AnthonyPaulO

    AnthonyPaulO

    Joined:
    Nov 5, 2010
    Posts:
    110
    @Antypodish Hello! Whatever happened to this? The work you were doing is impressive, I hope all is well and you'll be getting back to it soon, I know you have your main project going on with the sandbox thing, I saw your video on it and it looks like a labor of love, I like what you're doing! Ping us a status when you can, would love to see where you're at. Cheers!
     
    TS_WL likes this.
  10. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    @AnthonyPaulO, Hi. Thank you for popping up.
    Also thank you to anyone interested in this project.

    To be honest, time flies and I didn't realized, it was March, last time I have posted here. It may be quite good time now, to decide on update, as lots of thing changed even recently regarding DOTS. Yes project it is quite outdated :oops:
    I am quite occupied this week. I will try touch it and update in next week. If you won't hear from me however, please bump it up.

    Just to be aware, I will be aiming update to 0.2.0 entities.

    Cheers :)
     
  11. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    For anyone interested, I just let you know, I have started conversion.

    That involves removing Injections and general refactoring.
    Nearly every script need be modified to some extent.
    I will not be using lambda approach at this point, but that should be easier to convert later, if applicable.

    When conversion will be complete, I will run some quick tests, to ensure consistency.
    I don't change any logic at this stage, other than modifying how highlight systems operates.
    But bugs could potentially sneak in.

    Since I work with 0.2.0 entities, once done, Unity +2020.1.0a15 will be recommended.
     
    NeatWolf likes this.
  12. christougher

    christougher

    Joined:
    Mar 6, 2015
    Posts:
    558
    Kudos on your amazing work! I've got some questions... first off, the included two demo scenes... I'm confused how they actually work. For example what script is controlling the ECS Octree generation? Is there a way to debug and visualize the octree itself?

    What are your thoughts on how this can be adapted to map out terrain/obstacles in 3d space for flight pathfinding? What about dynamic updates during runtime if some of the terrain/obstacles change... would that be too performance heavy? How big of an octree is too big? Too many questions lol...

    Also as far as rendering cubes in the octree, this could end up being the biggest bottleneck in performance, any thoughts on how to drastically improve this? Perhaps using a line renderer to draw outlines of all the cubes at once instead of mesh per node?

    And any thoughts on using this for distance checks between flying AI for local avoidance/collisions?

    not using Entities 0.3.0?

    There is an aging Octree project I've stumbled on that has some great pathfinding, and I was looking into updating it to DOTS but realizing my brain isn't very good at that:confused::(... you should check it out though
    https://github.com/supercontact/PathFindingEnhanced
     
    Last edited: Dec 12, 2019
    Antypodish likes this.
  13. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    Thx :)

    There is OctreeExample_Selector.cs script.

    Code (CSharp):
    1. internal class ExampleSelector
    2.     {
    3.         // Edit this manually and rebuild project, to select relevant example.
    4.         static public Selector selector = Selector.GetCollidingRayInstancesSystem_Octrees2Ray ;
    5.  
    6.         static public int i_generateInstanceInOctreeCount = 10 ; // Example of x octrees instances / entities to added.
    7.         static public int i_deleteInstanceInOctreeCount = 0 ; // Example of x octrees instances / entities to deleted.
    8.     }
    9.  
    10.     /// <summary>
    11.     /// Select example.
    12.     /// Each octree, ray and bounds, are represented by own entity.
    13.     /// Node can store instances. Intstance can represent ID, or entity, for which ID (optional entity index) must be ensured, that is unique in the tree.
    14.     /// Check individual examples.cs files, to see more details, how to derive relevant octree, how many octrees is generated, and how many instances(or entities) in octree is added.
    15.     /// Warrning, some exmaples may take moment to load, if they have many octrees to test. To speed up, either reduce number of octrees / rays / bounds to test, or disable debug, in relevant octree system.
    16.     /// </summary>
    17.     public enum Selector
    18.     {
    19.         none = 0,
    20.  
    21.         // **** Rayc(cast) base collisons checks, are testing, if bounds of instances (optional entities) inside octree nodes, are intersecting with target ray(s).
    22.  
    23.         /// <summary>
    24.         /// Check if target ray intersects instances bounds, inside octree nodes.
    25.         /// Optimised with multithreaded burst job system, when having many octrees, to test against one, or few rays.
    26.         /// </summary>
    27.         IsRayCollidingSystem_Octrees2Ray = 1,
    28.         /// <summary>
    29.         /// Check if target ray intersects instances bounds, inside octree nodes.
    30.         /// Optimised with multithreaded burst job system, when having many rays, to test against one, or few octrees.
    31.         /// </summary>
    32.         IsRayCollidingSystem_Rays2Octree = 2,
    33.        
    34.         /// <summary>
    35.         /// Check if target ray intersects instances bounds, inside octree nodes.
    36.         /// Returns number of instance (optional entities), which are intersecting target ray(s).
    37.         /// Optimised with multithreaded burst job system, when having many octrees, to test against one, or few rays.
    38.         /// </summary>
    39.         GetCollidingRayInstancesSystem_Octrees2Ray = 3,
    40.         /// <summary>
    41.         /// Check if target ray intersects instances bounds, inside octree nodes.
    42.         /// Returns number of instance (optional entities), which are intersecting target ray(s).
    43.         /// Optimised with multithreaded burst job system, when having many rays, to test against one, or few octrees.
    44.         /// </summary>
    45.         GetCollidingRayInstancesSystem_Rays2Octree = 4,
    46.  
    47.  
    48.         // **** Bounds base collisons checks, are testing, if bounds of instances (optional entities) inside octree nodes, are intersecting with target bounds.
    49.  
    50.         /// <summary>
    51.         /// Check if target bounds intersects instances bounds, inside octree nodes.
    52.         /// Optimised with multithreaded burst job system, when having many octrees, to test against one, or few bounds.
    53.         /// </summary>
    54.         IsBoundsCollidingSystem_Octrees2Bounds = 5,
    55.         /// <summary>
    56.         /// Check if target bounds intersects instances bounds, inside octree nodes.
    57.         /// Optimised with multithreaded burst job system, when having many bounds, to test against one, or few octrees.
    58.         /// </summary>
    59.         IsBoundsCollidingSystem_Bounds2Octree = 6,
    60.  
    61.         /// <summary>
    62.         /// Check if target bounds intersects instances bounds, inside octree nodes.
    63.         /// Returns number of instance (optional entities), which are intersecting target bounds.
    64.         /// Optimised with multithreaded burst job system, when having many octrees, to test against one, or few bounds.
    65.         /// </summary>
    66.         GetCollidingBoundsInstancesSystem_Octrees2Bounds = 7,
    67.         /// <summary>
    68.         /// Check if target bounds intersects instances bounds, inside octree nodes.
    69.         /// Returns number of instance (optional entities), which are intersecting target bounds.
    70.         /// Optimised with multithreaded burst job system, when having many bounds, to test against one, or few octrees.
    71.         /// </summary>
    72.         GetCollidingBoundsInstancesSystem_Bounds2Octree = 8,
    73.     }

    Changing enum selector on very top, will define, which example is executed.
    If you click reference, to follow enumerator, you will navigate to relevant example.

    Each example has
    Code (CSharp):
    1. // ***** Initialize Octree ***** //
    2. AddNewOctreeSystem._CreateNewOctree
    And further methods to add nodes and instances inside octree.

    I would need double check for that. I know I had it at some point for debugging. I may have just commented it out at some point, if not removed.

    There isn't really limit, other than length of integer itself and memory.
    In normal case, Octree don't occupy memory space, which is not used by any instance (octree cell).
    Freed cells are attempted to be reused, if needed in different location / size. References are just changed.

    In my experience is pretty robust.

    You can easily use raycast approach, to find nearby obstacles.
    For example using:
    OctreeExample_GetCollidingRayInstancesSystem_Rays2Octree.cs

    However, I may be in believe, that current native Unity solution may be much faster, for that purpose. I haven't tested tho.
    Regarding path finding itself, you need A*, or similar solution.
    You could probably use Octree nodes with instances in it, to define, which area is occupied by obstacles, to help A* solution.
    While I need the solution as well, I haven't give much though on it yet.

    You don't render cubes. But if you need, you can look into minecraft approach, and also before discussed in our DOTS forum, using marching cubes for example. This could merge near meshes.
    See my attached videos, where you build of different size blocks, to reduce performance impact.
    Also, you would need culling solution, to not render what is hidden.

    If you render group of meshes as one, you will reduce performance impact.

    Using mentioned raycast approach, will help you with that. You can use mixed approaches from examples. You are not fixed to only one. But again, I am in believe, Unity native solution may be potentially faster. (not confirmed).
    There is area for me, to improve upon that as well, but I may look into that, after conversion is done. Not promising however, just in case :)

    For now I decided go with 0.2.0. Is major leap already.
    I don't think there should be any issue, using 0.3.0, unless I missed something obvious :) I may do it at some point later.
     
    christougher likes this.
  14. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    I haven't tested it. It looks like decent project. The base reference I used for current Octree, at least was confirmed and stable. Also, is without additional overhead. That why I went with current solution. Adapting and keeping up with DOTS evolution, is quite time consuming itself, to do it carefully. Proposed solution has quite a bit of code there. It would be nightmare keep it up and fully understand what is happening inside, at least until DOTS is stable :)
     
    christougher likes this.
  15. Guedez

    Guedez

    Joined:
    Jun 1, 2012
    Posts:
    827
    Isn't it faster to just decide on a decent smallest node size, and simply use a SharedComponentData that states which node a entity is?
    For instance, a entity on 0.12, 3.14, 8.12 on a 4 size node would live on node (0, 0, 8), then if the raycast/boxcast/whatever_collision_you_are_doing collides with node (0, 0, 8) you just ForEach with the node (0, 0, 8) as a filter.
    I assume it would have a slightly higher add/remove/move cost, but smaller search cost, although I never bothered testing, and quite honestly, don't really know much about the inner workings of the ECS

    Edit: It's like the super naive technique of having a 3 dimensional array of lists containing the entities each index have, but without having to actually allocate 3 dimensional array of mostly empty lists
     
  16. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    In my current approach node is not an entity. Is just index in a buffer. Entity is just octree itself. Or assigned instances in the node (optional).

    While I am aware about existence of shared components, I haven't been using them for storing data in long time. I find it a bit awkward to work it. I rather use it only, if I need change materials/mesh. I could use BlobArray, or BlobPtr, but I rather avoid creating entities per each node.

    Weather I would gain anything on that, I don't know to be honest.

    One thing for sure is, that if using entity per node, I need create entities and populate them with data.
    Atm. I can populate whole octree structure in one frame, by just assigning relevant indexes in buffers. And is burst friendly.

    With nodes as entities, unless I know how many nodes I need, I may loose potentially few frames, just to create multi depth octree structure. That because of EntityCommandBuffer. I could use EntityManager, but then I loose Burst.
    Unless I miss something.

    Searching / checking children and instances, is just looking on root node, checking their 8 children nodes for contained instances (if any), and if they are intersecting with raycast/bounding area, or/and continue search further down the branches.

    The thing is, octree doesn't have sense of dimensions as such.
    Is just relation between nodes. You can ask specifically for node 0,0,8 alike.
    Octree bounding area can be large as few thousands for example. But having only two nodes, or many thousands of nodes, of different sizes. For adding nodes, buffer sizes need be just as large, to accommodate all nodes. If Capacity is not enough, then resize accordingly. While removing nodes, at runtime, is just freeing for reuse (set as spare) buffer indexes.

    Maybe I misunderstood your concept. But I can not imagine at this point, how it suppose to work effectively, by addressing xyz reference. Maybe if I use HashMap instead? But I would need each own hashmap per octree, to avoid collisions.
     
  17. Guedez

    Guedez

    Joined:
    Jun 1, 2012
    Posts:
    827
    I meant making something that somewhat works like an octree but not being an octree at all
    But thinking about it again, it cannot know if a large area have no leafs at all, so it's a bad idea
     
  18. sngdan

    sngdan

    Joined:
    Feb 7, 2014
    Posts:
    1,154
    it's not necessarily a bad idea - it simply depends on your use case (object size variance, static vs. dynamic, movement patterns, density, etc.)
     
    Antypodish likes this.
  19. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    I have converted all project to 0.2.0.
    Now I am just dealing with some bugs, introduced after modifications to few of 8 examples.
    I hope resolve them by end of tomorrow, if nothing interrupt me.
    Then cleaning should be left for the last.
     
    christougher likes this.
  20. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    You could use chunkified method.
    Just like minecraft.
    Chunks describing the map, which can be located anywhere in the world cooridinates, in any order. They would store info about blocks, and their chunks neighbours.
    But then, blocks in such chunks, are organized in strict manner. You can easily traverse 3D structure of 32x32x256 using single index of 1D array (or if you like xyz).
     
  21. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    Ok, I did major update and some fixes.

    It is important to notice, that project is designed for voxelized systems.
    I found an issue, where system may not behave well, when smallest voxel wont fit in smallest node for some reason. For example, node is already occupied, or voxel does not fit to any of of nodes.
    The last part could be mitigated, using hash map, just to store voxel instances in nodes, instead per index, in dynamic buffer of the entity octree.
    Rest would be same on dynamic buffer basis.

    I did also some optimizations. But I left at current stage lots of commented out code. So need cleanup at some point.

    It isn't perfect, but is functional for what I need.
    You should see following (10k cubes), with raycast and blue highlighted cube.

    upload_2019-12-15_22-49-14.png

    In hierarchy.and inspector.

    upload_2019-12-15_22-59-35.png

    Repository available here.
    Antypodish/ECS-Octree
    https://github.com/Antypodish/ECS-Octree

    Upgrade form
    • Unity 2018.3.0b10 to 2020.1.0a15
    • Entities 0.0.12 p 21 to 0.2.0 p 18
    • Burst 0.2.4 p37 to 1.2.0 p 10
    • Collections 0.0.9 to 0.2.0 p 13
    • Jobs 0.0.7 to 0.2.1 p 3
    • Mathematics 0.0.12 p 19 to 1.1.0

    Added:
    • Hybrid Renderer 0.2.0
    • "Antypodish" to namespace.

    Major Issue:
    • RenderMeshSystemV2 causing performance hit. May require alternative rendering.
    • There may be expected thrown error, when voxel instance is out of required local position. For example at 3.2 instead 3.

    Let me know, if having any thoughts.
     
    Last edited: Dec 15, 2019
  22. AnthonyPaulO

    AnthonyPaulO

    Joined:
    Nov 5, 2010
    Posts:
    110
    This is cool stuff, looking forward to checking it out!
     
    Antypodish likes this.
  23. axxessdenied

    axxessdenied

    Joined:
    Nov 29, 2016
    Posts:
    33
    Awesome work! Going to follow this :)
     
    Antypodish likes this.
  24. christougher

    christougher

    Joined:
    Mar 6, 2015
    Posts:
    558
    Finally got a chance to play with this... anyone else not able to get this working? using Unity 2020 alpha 17, loading the Octree-ECS scene crashes every time... opening in 2019.3 is missing prefabs and scripts...
     
  25. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    @christougher What console error exactly says? Can you past it here please?
     
  26. christougher

    christougher

    Joined:
    Mar 6, 2015
    Posts:
    558
    No Console error, It just crashes unity completely. I've double checked the packages... that all checks out... OOP scene loads and works fine... here are the crash.dmp, editor.log and error.log... can't seem to find the issue myself...

    Dump Summary
    ------------
    Dump File: crash.dmp : C:\Users\chris\AppData\Local\Temp\Unity\Editor\Crashes\Crash_2019-12-22_183201928\crash.dmp
    Last Write Time: 12/22/2019 11:32:09 AM
    Process Name: Unity.exe : D:\UnityHubInstalls\2020.1.0a17\Editor\Unity.exe
    Process Architecture: x64
    Exception Code: 0xC0000005
    Exception Information: The thread tried to read from or write to a virtual address for which it does not have the appropriate access.
    Heap Information: Not Present

    System Information
    ------------------
    OS Version: 10.0.18362
    CLR Version(s):

    Modules
    -------
    Module Name Module Path Module Version
    ----------- ----------- --------------
    Unity.exe D:\UnityHubInstalls\2020.1.0a17\Editor\Unity.exe 2020.1.0.50937
    ntdll.dll C:\Windows\System32\ntdll.dll 10.0.18362.418
    kernel32.dll C:\Windows\System32\kernel32.dll 10.0.18362.329
    KERNELBASE.dll C:\Windows\System32\KERNELBASE.dll 10.0.18362.535
    apphelp.dll C:\Windows\System32\apphelp.dll 10.0.18362.1
    crypt32.dll C:\Windows\System32\crypt32.dll 10.0.18362.476
    ucrtbase.dll C:\Windows\System32\ucrtbase.dll 10.0.18362.387
    msasn1.dll C:\Windows\System32\msasn1.dll 10.0.18362.1
    user32.dll C:\Windows\System32\user32.dll 10.0.18362.535
    win32u.dll C:\Windows\System32\win32u.dll 10.0.18362.535
    gdi32.dll C:\Windows\System32\gdi32.dll 10.0.18362.1
    gdi32full.dll C:\Windows\System32\gdi32full.dll 10.0.18362.535
    msvcp_win.dll C:\Windows\System32\msvcp_win.dll 10.0.18362.387
    optix.6.0.0.dll D:\UnityHubInstalls\2020.1.0a17\Editor\optix.6.0.0.dll 6.0.0.0
    libfbxsdk.dll D:\UnityHubInstalls\2020.1.0a17\Editor\libfbxsdk.dll 2018.1.1.0
    advapi32.dll C:\Windows\System32\advapi32.dll 10.0.18362.329
    msvcrt.dll C:\Windows\System32\msvcrt.dll 7.0.18362.1
    sechost.dll C:\Windows\System32\sechost.dll 10.0.18362.267
    OpenImageDenoise.dll D:\UnityHubInstalls\2020.1.0a17\Editor\OpenImageDenoise.dll 0.0.0.0
    rpcrt4.dll C:\Windows\System32\rpcrt4.dll 10.0.18362.476
    shell32.dll C:\Windows\System32\shell32.dll 10.0.18362.535
    cfgmgr32.dll C:\Windows\System32\cfgmgr32.dll 10.0.18362.387
    SHCore.dll C:\Windows\System32\SHCore.dll 10.0.18362.1
    OpenRL.dll D:\UnityHubInstalls\2020.1.0a17\Editor\OpenRL.dll 1.5.100.0
    RadeonImageFilters64.dll D:\UnityHubInstalls\2020.1.0a17\Editor\RadeonImageFilters64.dll 1.4.0.0
    combase.dll C:\Windows\System32\combase.dll 10.0.18362.449
    bcryptPrimitives.dll C:\Windows\System32\bcryptPrimitives.dll 10.0.18362.295
    umbraoptimizer64.dll D:\UnityHubInstalls\2020.1.0a17\Editor\umbraoptimizer64.dll 0.0.0.0
    windows.storage.dll C:\Windows\System32\windows.storage.dll 10.0.18362.535
    ws2_32.dll C:\Windows\System32\ws2_32.dll 10.0.18362.387
    setupapi.dll C:\Windows\System32\setupapi.dll 10.0.18362.1
    Wldap32.dll C:\Windows\System32\Wldap32.dll 10.0.18362.449
    profapi.dll C:\Windows\System32\profapi.dll 10.0.18362.1
    normaliz.dll C:\Windows\System32\normaliz.dll 10.0.18362.1
    bcrypt.dll C:\Windows\System32\bcrypt.dll 10.0.18362.267
    powrprof.dll C:\Windows\System32\powrprof.dll 10.0.18362.1
    umpdc.dll C:\Windows\System32\umpdc.dll 0.0.0.0
    shlwapi.dll C:\Windows\System32\shlwapi.dll 10.0.18362.1
    hid.dll C:\Windows\System32\hid.dll 10.0.18362.1
    kernel.appcore.dll C:\Windows\System32\kernel.appcore.dll 10.0.18362.1
    libcef.dll D:\UnityHubInstalls\2020.1.0a17\Editor\libcef.dll 3.2062.1930.0
    cryptsp.dll C:\Windows\System32\cryptsp.dll 10.0.18362.1
    ispc_texcomp.dll D:\UnityHubInstalls\2020.1.0a17\Editor\ispc_texcomp.dll 0.0.0.0
    ole32.dll C:\Windows\System32\ole32.dll 10.0.18362.113
    WinPixEventRuntime.dll D:\UnityHubInstalls\2020.1.0a17\Editor\WinPixEventRuntime.dll 1.0.1812.6001
    imm32.dll C:\Windows\System32\imm32.dll 10.0.18362.387
    psapi.dll C:\Windows\System32\psapi.dll 10.0.18362.1
    oleaut32.dll C:\Windows\System32\oleaut32.dll 10.0.18362.535
    comdlg32.dll C:\Windows\System32\comdlg32.dll 10.0.18362.418
    wintrust.dll C:\Windows\System32\wintrust.dll 10.0.18362.387
    tbb.dll D:\UnityHubInstalls\2020.1.0a17\Editor\tbb.dll 2017.0.2016.1004
    opengl32.dll C:\Windows\System32\opengl32.dll 10.0.18362.387
    D3DCOMPILER_47.dll C:\Windows\System32\D3DCOMPILER_47.dll 10.0.18362.1
    VCRUNTIME140.dll C:\Windows\System32\VCRUNTIME140.dll 14.11.25325.0
    msvcp140.dll C:\Windows\System32\msvcp140.dll 14.11.25325.0
    version.dll C:\Windows\System32\version.dll 10.0.18362.1
    msvcr100.dll C:\Windows\System32\msvcr100.dll 10.0.40219.325
    msvcp100.dll C:\Windows\System32\msvcp100.dll 10.0.40219.325
    embree.dll D:\UnityHubInstalls\2020.1.0a17\Editor\embree.dll 2.14.0.0
    glu32.dll C:\Windows\System32\glu32.dll 10.0.18362.387
    winhttp.dll C:\Windows\System32\winhttp.dll 10.0.18362.449
    IPHLPAPI.DLL C:\Windows\System32\IPHLPAPI.DLL 10.0.18362.1
    winmm.dll C:\Windows\System32\winmm.dll 10.0.18362.1
    SketchUpAPI.dll D:\UnityHubInstalls\2020.1.0a17\Editor\SketchUpAPI.dll 19.0.753.0
    winspool.drv C:\Windows\System32\winspool.drv 10.0.18362.267
    wsock32.dll C:\Windows\System32\wsock32.dll 10.0.18362.1
    CRYPTBASE.DLL C:\Windows\System32\CRYPTBASE.DLL 10.0.18362.1
    comctl32.dll C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.18362.535_none_e6c3b34713100821\comctl32.dll 6.10.18362.535
    userenv.dll C:\Windows\System32\userenv.dll 10.0.18362.387
    wtsapi32.dll C:\Windows\System32\wtsapi32.dll 10.0.18362.1
    dhcpcsvc.dll C:\Windows\System32\dhcpcsvc.dll 10.0.18362.267
    urlmon.dll C:\Windows\System32\urlmon.dll 11.0.18362.449
    nsi.dll C:\Windows\System32\nsi.dll 10.0.18362.449
    secur32.dll C:\Windows\System32\secur32.dll 10.0.18362.1
    oleacc.dll C:\Windows\System32\oleacc.dll 7.2.18362.1
    msvcr120.dll C:\Windows\System32\msvcr120.dll 12.0.40649.5
    usp10.dll C:\Windows\System32\usp10.dll 10.0.18362.476
    msvcp120.dll C:\Windows\System32\msvcp120.dll 12.0.40649.5
    winmmbase.dll C:\Windows\System32\winmmbase.dll 10.0.18362.1
    propsys.dll C:\Windows\System32\propsys.dll 7.0.18362.267
    SketchUpCommonPreferences.dll D:\UnityHubInstalls\2020.1.0a17\Editor\SketchUpCommonPreferences.dll 19.0.753.20342
    iertutil.dll C:\Windows\System32\iertutil.dll 11.0.18362.449
    DXCore.dll C:\Windows\System32\DXCore.dll 10.0.18362.1
    sspicli.dll C:\Windows\System32\sspicli.dll 10.0.18362.1
    FreeImage.dll D:\UnityHubInstalls\2020.1.0a17\Editor\FreeImage.dll 3.18.0.0
    OpenRL_pthread.dll D:\UnityHubInstalls\2020.1.0a17\Editor\OpenRL_pthread.dll 2.9.0.0
    mswsock.dll C:\Windows\System32\mswsock.dll 10.0.18362.1
    uxtheme.dll C:\Windows\System32\uxtheme.dll 10.0.18362.449
    NahimicVRDevProps.dll C:\Program Files\Nahimic\Nahimic VR\Foundation\x64\NahimicVRDevProps.dll 0.0.0.0
    clbcatq.dll C:\Windows\System32\clbcatq.dll 2001.12.10941.16384
    MMDevAPI.dll C:\Windows\System32\MMDevAPI.dll 10.0.18362.387
    devobj.dll C:\Windows\System32\devobj.dll 10.0.18362.387
    AudioSes.dll C:\Windows\System32\AudioSes.dll 10.0.18362.449
    WinTypes.dll C:\Windows\System32\WinTypes.dll 10.0.18362.449
    wbemprox.dll C:\Windows\System32\wbem\wbemprox.dll 10.0.18362.1
    wbemcomn.dll C:\Windows\System32\wbemcomn.dll 10.0.18362.1
    wbemsvc.dll C:\Windows\System32\wbem\wbemsvc.dll 10.0.18362.1
    fastprox.dll C:\Windows\System32\wbem\fastprox.dll 10.0.18362.1
    amsi.dll C:\Windows\System32\amsi.dll 10.0.18362.1
    symamsi.dll C:\Program Files (x86)\Norton AntiVirus\Engine\22.19.9.63\symamsi.dll 15.7.9.16
    rsaenh.dll C:\Windows\System32\rsaenh.dll 10.0.18362.1
    imagehlp.dll C:\Windows\System32\imagehlp.dll 10.0.18362.1
    gpapi.dll C:\Windows\System32\gpapi.dll 10.0.18362.1
    cryptnet.dll C:\Windows\System32\cryptnet.dll 10.0.18362.1
    winnsi.dll C:\Windows\System32\winnsi.dll 10.0.18362.449
    msctf.dll C:\Windows\System32\msctf.dll 10.0.18362.535
    netprofm.dll C:\Windows\System32\netprofm.dll 10.0.18362.267
    npmproxy.dll C:\Windows\System32\npmproxy.dll 10.0.18362.267
    dhcpcsvc6.DLL C:\Windows\System32\dhcpcsvc6.DLL 10.0.18362.267
    dnsapi.dll C:\Windows\System32\dnsapi.dll 10.0.18362.267
    FWPUCLNT.DLL C:\Windows\System32\FWPUCLNT.DLL 10.0.18362.207
    rasadhlp.dll C:\Windows\System32\rasadhlp.dll 10.0.18362.1
    ntmarta.dll C:\Windows\System32\ntmarta.dll 10.0.18362.1
    explorerframe.dll C:\Windows\System32\explorerframe.dll 10.0.18362.418
    resourcepolicyclient.dll C:\Windows\System32\resourcepolicyclient.dll 10.0.18362.1
    d3d11.dll C:\Windows\System32\d3d11.dll 10.0.18362.387
    dxgi.dll C:\Windows\System32\dxgi.dll 10.0.18362.387
    nvldumdx.dll C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvldumdx.dll 26.21.14.4141
    nvwgf2umx.dll C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvwgf2umx.dll 26.21.14.4141
    cudart64_90.dll D:\UnityHubInstalls\2020.1.0a17\Editor\cudart64_90.dll 6.14.11.9000
    dbghelp.dll C:\Windows\System32\dbghelp.dll 10.0.18362.1
    tbbmalloc.dll D:\UnityHubInstalls\2020.1.0a17\Editor\tbbmalloc.dll 2017.0.2016.1004
    OpenCL.dll C:\Windows\System32\OpenCL.dll 2.2.2.0
    radeonrays.dll D:\UnityHubInstalls\2020.1.0a17\Editor\radeonrays.dll 0.0.0.0
    mono-2.0-bdwgc.dll D:\UnityHubInstalls\2020.1.0a17\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll 0.0.0.0
    Microsoft.VisualStudio.Setup.Configuration.Native.dll C:\ProgramData\Microsoft\VisualStudio\Setup\x64\Microsoft.VisualStudio.Setup.Configuration.Native.dll 1.18.21.37008
    burst-llvm-8.dll D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.burst@1.2.0-preview.10\.Runtime\burst-llvm-8.dll 0.0.0.0
    dataexchange.dll C:\Windows\System32\dataexchange.dll 10.0.18362.1
    dcomp.dll C:\Windows\System32\dcomp.dll 10.0.18362.387
    twinapi.appcore.dll C:\Windows\System32\twinapi.appcore.dll 10.0.18362.1
    rmclient.dll C:\Windows\System32\rmclient.dll 10.0.18362.267
    xinput1_3.dll C:\Windows\System32\xinput1_3.dll 9.18.944.0
    CoreMessaging.dll C:\Windows\System32\CoreMessaging.dll 10.0.18362.1
    dwmapi.dll C:\Windows\System32\dwmapi.dll 10.0.18362.267
    nlaapi.dll C:\Windows\System32\nlaapi.dll 10.0.18362.387
    TextInputFramework.dll C:\Windows\System32\TextInputFramework.dll 10.0.18362.267
    CoreUIComponents.dll C:\Windows\System32\CoreUIComponents.dll 10.0.18362.207
    nvoptix.dll C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvoptix.dll 7.1.0.0
    nvapi64.dll C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvapi64.dll 26.21.14.4141
    nvcuda.dll C:\Windows\System32\nvcuda.dll 26.21.14.4141
    nvrtum64.dll C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvrtum64.dll 26.21.14.4141
    nvml.dll C:\Program Files\NVIDIA Corporation\NVSMI\nvml.dll 8.17.14.4141
    nvopencl64.dll C:\Windows\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvopencl64.dll 26.21.14.4141

    Unity Editor by Unity Technologies [version: Unity 2020.1.0a17_ccc6f9131a63]

    Unknown caused an Access Violation (0xc0000005)
    in module Unknown at 0033:2dd28f30.

    Error occurred at 2019-12-22_113210.
    D:\UnityHubInstalls\2020.1.0a17\Editor\Unity.exe, run by chris.

    47% physical memory in use.
    32711 MB physical memory [17019 MB free].
    2153 MB process peak paging file [2087 MB used].
    1572 MB process peak working set [1569 MB used].
    System Commit Total/Limit/Peak: 22460MB/37796MB/38648MB
    System Physical Total/Available: 32711MB/17019MB
    System Process Count: 338
    System Thread Count: 5754
    System Handle Count: 180117
    Disk space data for 'C:\Users\chris\AppData\Local\Temp\Unity\Editor\Crashes\Crash_2019-12-22_183201928\': 87675760640 bytes free of 498966228992 total.

    Read from location 0000000000000000 caused an access violation.

    Context:
    RDI: 0x000000f96a956b88 RSI: 0x0000000000000001 RAX: 0x0000000000000000
    RBX: 0x0000000000000000 RCX: 0x000001fc4001a180 RDX: 0x000000000000007f
    RIP: 0x000001fc2dd28f30 RBP: 0x000000f96a9569a0 SegCs: 0x0000000000000033
    EFlags: 0x0000000000010287 RSP: 0x000000f96a956938 SegSs: 0x000000000000002b
    R8: 0x0000000000000010 R9: 0x0000000000000002 R10: 0x0000000000000000
    R11: 0x00007ff66e8f52f0 R12: 0x0000000000000000 R13: 0x000001fbf80b3d10
    R14: 0x000001fc2dd28f30 R15: 0x0000000000000000


    Bytes at CS:EIP:
    18 d2 25 2e fc 01 00 00 00 00 00 00 00 00 00 00

    Mono DLL loaded successfully at 'D:\UnityHubInstalls\2020.1.0a17\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll'.


    Stack Trace of Crashed Thread 51796:
    ERROR: SymGetSymFromAddr64, GetLastError: 'The specified module could not be found.' (Address: 000001FC2DD28F30)
    ERROR: SymGetModuleInfo64, GetLastError: 'A dynamic link library (DLL) initialization routine failed.' (Address: 000001FC2DD28F30)
    0x000001FC2DD28F30 ((<unknown>)) (function-name not available)

    Stacks for Running Threads:

    Call Stack for Thread 47456:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF668906440)
    0x00007FF668906440 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 63944:
    0x00007FFB1095CC14 (ntdll) NtWaitForMultipleObjects
    0x00007FFB0D908027 (KERNELBASE) WaitForMultipleObjectsEx
    0x00007FFB10019D1B (combase) CStdStubBuffer_Disconnect
    0x00007FFB10019BA0 (combase) CStdStubBuffer_Disconnect
    0x00007FFB100199CC (combase) CStdStubBuffer_Disconnect
    0x00007FFB1001994C (combase) CStdStubBuffer_Disconnect
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 32320:
    0x00007FFB1095FA54 (ntdll) ZwWaitForWorkViaWorkerFactory
    0x00007FFB108F4060 (ntdll) RtlInitializeResource
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 26956:
    0x00007FFB1095FA54 (ntdll) ZwWaitForWorkViaWorkerFactory
    0x00007FFB108F4060 (ntdll) RtlInitializeResource
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 7740:
    0x00007FFB1095FA54 (ntdll) ZwWaitForWorkViaWorkerFactory
    0x00007FFB108F4060 (ntdll) RtlInitializeResource
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 17864:
    0x00007FFB1095C744 (ntdll) ZwDelayExecution
    0x00007FFB0D8F6931 (KERNELBASE) SleepEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688B19F8)
    0x00007FF6688B19F8 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6697ED806)
    0x00007FF6697ED806 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 52040:
    0x00007FFB1095C744 (ntdll) ZwDelayExecution
    0x00007FFB0D8F6931 (KERNELBASE) SleepEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688B19F8)
    0x00007FF6688B19F8 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AD1C2F9)
    0x00007FF66AD1C2F9 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AD1CE99)
    0x00007FF66AD1CE99 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 35656:
    0x00007FFB1095C1E4 (ntdll) ZwRemoveIoCompletion
    0x00007FFB0CFC0A68 (MSWSOCK) Tcpip4_WSHSetSocketInformation
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 47232:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 44700:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 74368:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 23248:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 3524:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 53224:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 40252:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 46720:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 38984:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 58740:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 37116:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 47028:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 44768:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 43172:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 42616:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 66272:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 60704:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 11964:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 67784:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 62548:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 55536:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 52644:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 42340:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 67268:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE82D)
    0x00007FF6688AE82D (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE8B4)
    0x00007FF6688AE8B4 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66841826A)
    0x00007FF66841826A (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 37884:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF667FA3DE6)
    0x00007FF667FA3DE6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 31568:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FFB0CFB82ED)
    0x00007FFB0CFB82ED (MSWSOCK) (function-name not available)
    0x00007FFB0CFBF07A (MSWSOCK) Tcpip4_WSHGetWildcardSockaddr
    0x00007FFB0EC31F7C (WS2_32) select
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE30904)
    0x00007FF66AE30904 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A5C2EFE)
    0x00007FF66A5C2EFE (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 68484:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A5BAD83)
    0x00007FF66A5BAD83 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 53044:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A236F31)
    0x00007FF66A236F31 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 19404:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE82D)
    0x00007FF6688AE82D (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE8B4)
    0x00007FF6688AE8B4 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A231A59)
    0x00007FF66A231A59 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 74704:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A236F31)
    0x00007FF66A236F31 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 58108:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE82D)
    0x00007FF6688AE82D (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE8B4)
    0x00007FF6688AE8B4 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A231A59)
    0x00007FF66A231A59 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 35440:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A236F31)
    0x00007FF66A236F31 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 67748:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE82D)
    0x00007FF6688AE82D (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE8B4)
    0x00007FF6688AE8B4 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A231A59)
    0x00007FF66A231A59 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 70524:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A236F31)
    0x00007FF66A236F31 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 58192:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE82D)
    0x00007FF6688AE82D (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE8B4)
    0x00007FF6688AE8B4 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A231A59)
    0x00007FF66A231A59 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 34696:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AF914DA)
    0x00007FF66AF914DA (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AF9142E)
    0x00007FF66AF9142E (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AF22C76)
    0x00007FF66AF22C76 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66B705354)
    0x00007FF66B705354 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 54628:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AF734A5)
    0x00007FF66AF734A5 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AF20F3A)
    0x00007FF66AF20F3A (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AF22C41)
    0x00007FF66AF22C41 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66B705354)
    0x00007FF66B705354 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 57472:
    0x00007FFB1095C744 (ntdll) ZwDelayExecution
    0x00007FFB0D8F6931 (KERNELBASE) SleepEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AF210EA)
    0x00007FF66AF210EA (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AF22CA4)
    0x00007FF66AF22CA4 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66B705354)
    0x00007FF66B705354 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 57888:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 35936:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 47900:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 66484:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 56916:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 36120:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 68976:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 27720:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 74268:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDAD8563 (nvwgf2umx) OpenAdapter12
    0x00007FFABDAD7790 (nvwgf2umx) OpenAdapter12
    0x00007FFABDACEA0D (nvwgf2umx) OpenAdapter12
    0x00007FFABE37D12A (nvwgf2umx) NVAPI_Thunk
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 28440:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE82D)
    0x00007FF6688AE82D (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688AE8B4)
    0x00007FF6688AE8B4 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6678FDAAC)
    0x00007FF6678FDAAC (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66790BB0B)
    0x00007FF66790BB0B (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66790BEC8)
    0x00007FF66790BEC8 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 22396:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF669517E16)
    0x00007FF669517E16 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 58300:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF669517E16)
    0x00007FF669517E16 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 16060:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF669517E16)
    0x00007FF669517E16 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 69952:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 56436:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 30288:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 20248:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 48812:
    0x00007FFB1095F9F4 (ntdll) ZwWaitForAlertByThreadId
    0x00007FFB10920895 (ntdll) RtlSleepConditionVariableCS
    0x00007FFB0D92C2A9 (KERNELBASE) SleepConditionVariableCS
    0x000000018004C2C7 (OpenRL) rlRenderFrame
    0x000000018004C5EC (OpenRL) rlRenderFrame
    0x000000018004C8C6 (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 19500:
    0x00007FFB1095F9F4 (ntdll) ZwWaitForAlertByThreadId
    0x00007FFB10920895 (ntdll) RtlSleepConditionVariableCS
    0x00007FFB0D92C2A9 (KERNELBASE) SleepConditionVariableCS
    0x000000018004C2C7 (OpenRL) rlRenderFrame
    0x000000018004C5EC (OpenRL) rlRenderFrame
    0x000000018004C8C6 (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 43200:
    0x00007FFB1095F9F4 (ntdll) ZwWaitForAlertByThreadId
    0x00007FFB10920895 (ntdll) RtlSleepConditionVariableCS
    0x00007FFB0D92C2A9 (KERNELBASE) SleepConditionVariableCS
    0x000000018004C2C7 (OpenRL) rlRenderFrame
    0x000000018004C5EC (OpenRL) rlRenderFrame
    0x000000018004C8C6 (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 10272:
    0x00007FFB1095F9F4 (ntdll) ZwWaitForAlertByThreadId
    0x00007FFB10920895 (ntdll) RtlSleepConditionVariableCS
    0x00007FFB0D92C2A9 (KERNELBASE) SleepConditionVariableCS
    0x000000018004C2C7 (OpenRL) rlRenderFrame
    0x000000018004C5EC (OpenRL) rlRenderFrame
    0x000000018004C8C6 (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 60832:
    0x00007FFB1095F9F4 (ntdll) ZwWaitForAlertByThreadId
    0x00007FFB10920895 (ntdll) RtlSleepConditionVariableCS
    0x00007FFB0D92C2A9 (KERNELBASE) SleepConditionVariableCS
    0x000000018004C2C7 (OpenRL) rlRenderFrame
    0x000000018004C5EC (OpenRL) rlRenderFrame
    0x000000018004C8C6 (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 62680:
    0x00007FFB1095F9F4 (ntdll) ZwWaitForAlertByThreadId
    0x00007FFB10920895 (ntdll) RtlSleepConditionVariableCS
    0x00007FFB0D92C2A9 (KERNELBASE) SleepConditionVariableCS
    0x000000018004C2C7 (OpenRL) rlRenderFrame
    0x000000018004C5EC (OpenRL) rlRenderFrame
    0x000000018004C8C6 (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 12988:
    0x00007FFB1095F9F4 (ntdll) ZwWaitForAlertByThreadId
    0x00007FFB10920895 (ntdll) RtlSleepConditionVariableCS
    0x00007FFB0D92C2A9 (KERNELBASE) SleepConditionVariableCS
    0x000000018004C2C7 (OpenRL) rlRenderFrame
    0x000000018004C5EC (OpenRL) rlRenderFrame
    0x000000018004C8C6 (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 37804:
    0x00007FFB1095F9F4 (ntdll) ZwWaitForAlertByThreadId
    0x00007FFB10920895 (ntdll) RtlSleepConditionVariableCS
    0x00007FFB0D92C2A9 (KERNELBASE) SleepConditionVariableCS
    0x000000018004C2C7 (OpenRL) rlRenderFrame
    0x000000018004C5EC (OpenRL) rlRenderFrame
    0x000000018004C8C6 (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 72884:
    0x00007FFB0E631164 (win32u) NtUserGetMessage
    0x00007FFB0ECB41CD (USER32) GetMessageW
    0x00000001800643D5 (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 11904:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A98D0DA)
    0x00007FF66A98D0DA (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 17532:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA99385EAF (mono-2.0-bdwgc) mono_conc_hashtable_remove
    0x00007FFA9947381D (mono-2.0-bdwgc) mono_gc_reference_queue_new
    0x00007FFA994725F5 (mono-2.0-bdwgc) mono_callspec_parse
    0x00007FFA99435AA8 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFA99435836 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 14832:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FFB0CFB82ED)
    0x00007FFB0CFB82ED (MSWSOCK) (function-name not available)
    0x00007FFB0CFBFD1C (MSWSOCK) Tcpip4_WSHSetSocketInformation
    0x00007FFB0EC357F3 (WS2_32) WSAAccept
    0x00007FFB0EC35712 (WS2_32) accept
    0x00007FFA9947B068 (mono-2.0-bdwgc) mono_object_is_alive
    0x00007FFA99591DBB (mono-2.0-bdwgc) mono_debugger_set_generate_debug_info
    0x00007FFA99592753 (mono-2.0-bdwgc) mono_debugger_set_generate_debug_info
    0x00007FFA99584C92 (mono-2.0-bdwgc) mono_unity_backtrace_from_context
    0x00007FFA99435AA8 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFA99435836 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 65120:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A2880E3)
    0x00007FF66A2880E3 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A28ACEF)
    0x00007FF66A28ACEF (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66B705354)
    0x00007FF66B705354 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 26924:
    0x00007FFB1095C1E4 (ntdll) ZwRemoveIoCompletion
    0x00007FFB0D9083F3 (KERNELBASE) GetQueuedCompletionStatus
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A28503B)
    0x00007FF66A28503B (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A28824E)
    0x00007FF66A28824E (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A281F5B)
    0x00007FF66A281F5B (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 54304:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA99385EAF (mono-2.0-bdwgc) mono_conc_hashtable_remove
    0x00007FFA994754F1 (mono-2.0-bdwgc) mono_object_hash
    0x000001FC0D5F3A36 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F3763 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F367B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F3613 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F358B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F2B73 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F21EB (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F11E3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F10C3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F082B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F0566 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F01D6 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CFBFB (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CFB1B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CF8A3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CF73E (Mono JIT Code) <unknown class>.<unknown method>()
    0x00007FFA9948CD50 (mono-2.0-bdwgc) mono_get_runtime_build_info
    0x00007FFA99412142 (mono-2.0-bdwgc) mono_perfcounters_init
    0x00007FFA9941B312 (mono-2.0-bdwgc) mono_runtime_invoke_array
    0x00007FFA99435AEF (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFA99435836 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 54480:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA99385EAF (mono-2.0-bdwgc) mono_conc_hashtable_remove
    0x00007FFA994754F1 (mono-2.0-bdwgc) mono_object_hash
    0x000001FC0D5F3A36 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F3763 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F367B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F3613 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F358B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F2B73 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F21EB (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F11E3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F10C3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F082B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F0566 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F01D6 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CFBFB (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CFB1B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CF8A3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CF73E (Mono JIT Code) <unknown class>.<unknown method>()
    0x00007FFA9948CD50 (mono-2.0-bdwgc) mono_get_runtime_build_info
    0x00007FFA99412142 (mono-2.0-bdwgc) mono_perfcounters_init
    0x00007FFA9941B312 (mono-2.0-bdwgc) mono_runtime_invoke_array
    0x00007FFA99435AEF (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFA99435836 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 56920:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA99385EAF (mono-2.0-bdwgc) mono_conc_hashtable_remove
    0x00007FFA994754F1 (mono-2.0-bdwgc) mono_object_hash
    0x000001FC0D5F3A36 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F3763 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F367B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F3613 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F358B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F2B73 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F21EB (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F11E3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F10C3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F082B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F0566 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F01D6 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CFBFB (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CFB1B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CF8A3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CF73E (Mono JIT Code) <unknown class>.<unknown method>()
    0x00007FFA9948CD50 (mono-2.0-bdwgc) mono_get_runtime_build_info
    0x00007FFA99412142 (mono-2.0-bdwgc) mono_perfcounters_init
    0x00007FFA9941B312 (mono-2.0-bdwgc) mono_runtime_invoke_array
    0x00007FFA99435AEF (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFA99435836 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 59876:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA99385EAF (mono-2.0-bdwgc) mono_conc_hashtable_remove
    0x00007FFA994754F1 (mono-2.0-bdwgc) mono_object_hash
    0x000001FC0D5F3A36 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F3763 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F367B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F3613 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F358B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F2B73 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F21EB (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F11E3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F10C3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F082B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F0566 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F01D6 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CFBFB (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CFB1B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CF8A3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CF73E (Mono JIT Code) <unknown class>.<unknown method>()
    0x00007FFA9948CD50 (mono-2.0-bdwgc) mono_get_runtime_build_info
    0x00007FFA99412142 (mono-2.0-bdwgc) mono_perfcounters_init
    0x00007FFA9941B312 (mono-2.0-bdwgc) mono_runtime_invoke_array
    0x00007FFA99435AEF (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFA99435836 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 36656:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA99385EAF (mono-2.0-bdwgc) mono_conc_hashtable_remove
    0x00007FFA994754F1 (mono-2.0-bdwgc) mono_object_hash
    0x000001FC0D5F3A36 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F3763 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F367B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F3613 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F358B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F2B73 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F21EB (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F11E3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F10C3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F082B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F0566 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5F01D6 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CFBFB (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CFB1B (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CF8A3 (Mono JIT Code) <unknown class>.<unknown method>()
    0x000001FC0D5CF73E (Mono JIT Code) <unknown class>.<unknown method>()
    0x00007FFA9948CD50 (mono-2.0-bdwgc) mono_get_runtime_build_info
    0x00007FFA99412142 (mono-2.0-bdwgc) mono_perfcounters_init
    0x00007FFA9941B312 (mono-2.0-bdwgc) mono_runtime_invoke_array
    0x00007FFA99435AEF (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFA99435836 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 29428:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 58648:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 13104:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 33864:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 32620:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 66512:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 44400:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 11504:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 3980:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E2FC0)
    0x00007FF6682E2FC0 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6682E85A6)
    0x00007FF6682E85A6 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 67028:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF668459E26)
    0x00007FF668459E26 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 54508:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 60788:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 48636:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 68112:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 35320:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 44552:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 23768:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 51708:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 75444:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDAD8563 (nvwgf2umx) OpenAdapter12
    0x00007FFABDAD7790 (nvwgf2umx) OpenAdapter12
    0x00007FFABDACEA0D (nvwgf2umx) OpenAdapter12
    0x00007FFABE37D12A (nvwgf2umx) NVAPI_Thunk
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 71156:
    0x00007FFB1095CC14 (ntdll) NtWaitForMultipleObjects
    0x00007FFB0D908027 (KERNELBASE) WaitForMultipleObjectsEx
    0x00007FFB0D907F0E (KERNELBASE) WaitForMultipleObjects
    0x00007FFABE343337 (nvwgf2umx) NVAPI_Thunk
    0x00007FFABE37D12A (nvwgf2umx) NVAPI_Thunk
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 58412:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 18952:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 64500:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 60796:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 16508:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 55788:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 50160:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 67488:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 47872:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFABDBC4D06 (nvwgf2umx) OpenAdapter12
    0x00007FFABEA35F8C (nvwgf2umx) NVAPI_Thunk
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 44600:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FFB0CFB82ED)
    0x00007FFB0CFB82ED (MSWSOCK) (function-name not available)
    0x00007FFB0CFBF07A (MSWSOCK) Tcpip4_WSHGetWildcardSockaddr
    0x00007FFB0EC31F7C (WS2_32) select
    0x00007FFA993796D0 (mono-2.0-bdwgc) mono_poll
    0x00007FFA9943C3A5 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFA9943CE37 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFA99435AA8 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFA99435836 (mono-2.0-bdwgc) mono_threads_set_shutting_down
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 11780:
    0x00007FFB1095C1E4 (ntdll) ZwRemoveIoCompletion
    0x00007FFB0D9083F3 (KERNELBASE) GetQueuedCompletionStatus
    0x00007FFA91FFF351 (libcef) IsSandboxedProcess
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 25732:
    0x00007FFB1095C1E4 (ntdll) ZwRemoveIoCompletion
    0x00007FFB0D9083F3 (KERNELBASE) GetQueuedCompletionStatus
    0x00007FFA9003688F (libcef) cef_trace_event_instant
    0x00007FFA90035E9E (libcef) cef_trace_event_instant
    0x00007FFA9003647B (libcef) cef_trace_event_instant
    0x00007FFA90021BA0 (libcef) cef_trace_event_instant
    0x00007FFA90009938 (libcef) cef_trace_event_instant
    0x00007FFA90022247 (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 55156:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA9003705E (libcef) cef_trace_event_instant
    0x00007FFA90021BA0 (libcef) cef_trace_event_instant
    0x00007FFA90009938 (libcef) cef_trace_event_instant
    0x00007FFA90022247 (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 59556:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA90A523D9 (libcef) SetCrashKeyValueImpl
    0x00007FFA908E3EC0 (libcef) SetCrashKeyValueImpl
    0x00007FFA91A8E7A7 (libcef) SetCrashKeyValueImpl
    0x00007FFA91A8E94E (libcef) SetCrashKeyValueImpl
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 38192:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA90ACF321 (libcef) SetCrashKeyValueImpl
    0x00007FFA908E3EC0 (libcef) SetCrashKeyValueImpl
    0x00007FFA91A8E7A7 (libcef) SetCrashKeyValueImpl
    0x00007FFA91A8E94E (libcef) SetCrashKeyValueImpl
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 64192:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA90ACF321 (libcef) SetCrashKeyValueImpl
    0x00007FFA908E3EC0 (libcef) SetCrashKeyValueImpl
    0x00007FFA91A8E7A7 (libcef) SetCrashKeyValueImpl
    0x00007FFA91A8E94E (libcef) SetCrashKeyValueImpl
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 42232:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA90ACF321 (libcef) SetCrashKeyValueImpl
    0x00007FFA908E3EC0 (libcef) SetCrashKeyValueImpl
    0x00007FFA91A8E7A7 (libcef) SetCrashKeyValueImpl
    0x00007FFA91A8E94E (libcef) SetCrashKeyValueImpl
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 40948:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA9003705E (libcef) cef_trace_event_instant
    0x00007FFA90021BA0 (libcef) cef_trace_event_instant
    0x00007FFA90009938 (libcef) cef_trace_event_instant
    0x00007FFA902F8ADE (libcef) SetCrashKeyValueImpl
    0x00007FFA902F9553 (libcef) SetCrashKeyValueImpl
    0x00007FFA90022247 (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 34232:
    0x00007FFB0E639A84 (win32u) NtUserMsgWaitForMultipleObjectsEx
    0x00007FFB0ECB248D (USER32) MsgWaitForMultipleObjectsEx
    0x00007FFA90036A17 (libcef) cef_trace_event_instant
    0x00007FFA90035F6E (libcef) cef_trace_event_instant
    0x00007FFA9003647B (libcef) cef_trace_event_instant
    0x00007FFA90021BA0 (libcef) cef_trace_event_instant
    0x00007FFA90009938 (libcef) cef_trace_event_instant
    0x00007FFA902F8B6E (libcef) SetCrashKeyValueImpl
    0x00007FFA902F956F (libcef) SetCrashKeyValueImpl
    0x00007FFA90022247 (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 61152:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA9003705E (libcef) cef_trace_event_instant
    0x00007FFA90021BA0 (libcef) cef_trace_event_instant
    0x00007FFA90009938 (libcef) cef_trace_event_instant
    0x00007FFA902F8BFE (libcef) SetCrashKeyValueImpl
    0x00007FFA902F958B (libcef) SetCrashKeyValueImpl
    0x00007FFA90022247 (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 41752:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA9003705E (libcef) cef_trace_event_instant
    0x00007FFA90021BA0 (libcef) cef_trace_event_instant
    0x00007FFA90009938 (libcef) cef_trace_event_instant
    0x00007FFA902F946E (libcef) SetCrashKeyValueImpl
    0x00007FFA902F95A7 (libcef) SetCrashKeyValueImpl
    0x00007FFA90022247 (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 15468:
    0x00007FFB1095C1E4 (ntdll) ZwRemoveIoCompletion
    0x00007FFB0D9083F3 (KERNELBASE) GetQueuedCompletionStatus
    0x00007FFA9003688F (libcef) cef_trace_event_instant
    0x00007FFA90035E9E (libcef) cef_trace_event_instant
    0x00007FFA9003647B (libcef) cef_trace_event_instant
    0x00007FFA90021BA0 (libcef) cef_trace_event_instant
    0x00007FFA90009938 (libcef) cef_trace_event_instant
    0x00007FFA902F892E (libcef) SetCrashKeyValueImpl
    0x00007FFA902F95C3 (libcef) SetCrashKeyValueImpl
    0x00007FFA90022247 (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 72404:
    0x00007FFB1095C1E4 (ntdll) ZwRemoveIoCompletion
    0x00007FFB0D9083F3 (KERNELBASE) GetQueuedCompletionStatus
    0x00007FFA9003688F (libcef) cef_trace_event_instant
    0x00007FFA90035E9E (libcef) cef_trace_event_instant
    0x00007FFA9003647B (libcef) cef_trace_event_instant
    0x00007FFA90021BA0 (libcef) cef_trace_event_instant
    0x00007FFA90009938 (libcef) cef_trace_event_instant
    0x00007FFA902F8E5E (libcef) SetCrashKeyValueImpl
    0x00007FFA902F95DF (libcef) SetCrashKeyValueImpl
    0x00007FFA90022247 (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 75468:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA9003705E (libcef) cef_trace_event_instant
    0x00007FFA90021BA0 (libcef) cef_trace_event_instant
    0x00007FFA90009938 (libcef) cef_trace_event_instant
    0x00007FFA90022247 (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 25956:
    0x00007FFB1095F9F4 (ntdll) ZwWaitForAlertByThreadId
    0x00007FFB10920895 (ntdll) RtlSleepConditionVariableCS
    0x00007FFB0D92C2A9 (KERNELBASE) SleepConditionVariableCS
    0x00007FFA9003CCDE (libcef) cef_trace_event_instant
    0x00007FFA90020D9E (libcef) cef_trace_event_instant
    0x00007FFA90020363 (libcef) cef_trace_event_instant
    0x00007FFA9003D04D (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 50356:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA9003705E (libcef) cef_trace_event_instant
    0x00007FFA90021BA0 (libcef) cef_trace_event_instant
    0x00007FFA90009938 (libcef) cef_trace_event_instant
    0x00007FFA90022247 (libcef) cef_trace_event_instant
    0x00007FFA9000753F (libcef) cef_trace_event_instant
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 49236:
    0x00007FFB1095C744 (ntdll) ZwDelayExecution
    0x00007FFB0D8F6931 (KERNELBASE) SleepEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688B19F8)
    0x00007FF6688B19F8 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66A1441EF)
    0x00007FF66A1441EF (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 45324:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66B66AD02)
    0x00007FF66B66AD02 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66B53691F)
    0x00007FF66B53691F (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 18640:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6679E7C27)
    0x00007FF6679E7C27 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 52404:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6679E7C27)
    0x00007FF6679E7C27 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 34552:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6679E7C27)
    0x00007FF6679E7C27 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 38204:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF66AE635D2)
    0x00007FF66AE635D2 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6679E7C27)
    0x00007FF6679E7C27 (Unity) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF6688ABF60)
    0x00007FF6688ABF60 (Unity) (function-name not available)
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 55716:
    0x00007FFB1095CC14 (ntdll) NtWaitForMultipleObjects
    0x00007FFB0D908027 (KERNELBASE) WaitForMultipleObjectsEx
    0x00007FFB0D907F0E (KERNELBASE) WaitForMultipleObjects
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FFA855893B4)
    0x00007FFA855893B4 (nvcuda) (function-name not available)
    0x00007FFA856130D8 (nvcuda) cuProfilerStop
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FFA85588D63)
    0x00007FFA85588D63 (nvcuda) (function-name not available)
    0x00007FFA8584F6C0 (nvcuda) cuProfilerStop
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 248:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00007FFA85767CD7 (nvcuda) cuProfilerStop
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FFA85588D63)
    0x00007FFA85588D63 (nvcuda) (function-name not available)
    0x00007FFA8584F6C0 (nvcuda) cuProfilerStop
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 45020:
    0x00007FFB1095F9F4 (ntdll) ZwWaitForAlertByThreadId
    0x00007FFB10920895 (ntdll) RtlSleepConditionVariableCS
    0x00007FFB0D92C2A9 (KERNELBASE) SleepConditionVariableCS
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FFA8551D4AA)
    0x00007FFA8551D4AA (nvcuda) (function-name not available)
    ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FFA85588D63)
    0x00007FFA85588D63 (nvcuda) (function-name not available)
    0x00007FFA8584F6C0 (nvcuda) cuProfilerStop
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 24320:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00000001800DEBB8 (OpenRL) rlRenderFrame
    0x000000018007AC3B (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart


    Call Stack for Thread 54048:
    0x00007FFB1095C144 (ntdll) ZwWaitForSingleObject
    0x00007FFB0D8E8BA3 (KERNELBASE) WaitForSingleObjectEx
    0x00000001800DEBB8 (OpenRL) rlRenderFrame
    0x000000018007B39A (OpenRL) rlRenderFrame
    0x00000001800801D8 (OpenRL) rlRenderFrame
    0x000001FA6B3B3F2A (OpenRL_pthread) pthread_setspecific
    0x0000000058A51D9F (MSVCR100) endthreadex
    0x0000000058A51E3B (MSVCR100) endthreadex
    0x00007FFB0F7F7BD4 (KERNEL32) BaseThreadInitThunk
    0x00007FFB1092CED1 (ntdll) RtlUserThreadStart




    Stack Memory [0x000000F96A956938-0x000000F96A970000]:
    0x6a956938: 00000000 00000000 6a9569a0 000000f9 .........i.j....
    0x6a956948: 00000001 00000000 6a957b00 000000f9 .........{.j....
    0x6a956958: 6a9569a0 000000f9 6a956930 000000f9 .i.j....0i.j....
    0x6a956968: 00000000 00000000 00000001 00000000 ................
    0x6a956978: 0d49e640 000001fc 00000000 00000000 @.I.............
    0x6a956988: 2dd28f30 000001fc 00000000 00000000 0..-............
    0x6a956998: 00000000 00000000 6a956b20 000000f9 ........ k.j....
    0x6a9569a8: cde6f6fb 000001fb 6a956b90 000000f9 .........k.j....
    0x6a9569b8: 00000000 00000000 00000001 00000000 ................
    0x6a9569c8: 6a956b30 000000f9 3f800000 000000f9 0k.j.......?....
    0x6a9569d8: 675be7b6 00007ff6 43be0000 43e08000 ..[g.......C...C
    0x6a9569e8: 00000001 00000000 6a956bb0 000000f9 .........k.j....
    0x6a9569f8: 6a956b90 000000f9 6a956b28 000000f9 .k.j....(k.j....
    0x6a956a08: 3f000001 3f000000 6a956b30 000000f9 ...?...?0k.j....
    0x6a956a18: 00000000 00000000 00000000 00000000 ................
    0x6a956a28: 00000000 00000000 6bfb97f8 00007ff6 ...........k....
    0x6a956a38: 00000000 00000000 00000000 00000000 ................
    0x6a956a48: 3f800000 3f800000 fffffffe ffffffff ...?...?........
    0x6a956a58: 6bfb97f8 00007ff6 6a956b30 000000f9 ...k....0k.j....
    0x6a956a68: 6a956b90 000000f9 6a956b28 000000f9 .k.j....(k.j....
    0x6a956a78: cdd807ab 000001fb 00000000 00000000 ................
    0x6a956a88: 6a956af0 000000f9 00000001 00000000 .j.j............
    0x6a956a98: 310c1480 000001fc 00000000 00000000 ...1............
    0x6a956aa8: 3f800000 3f800000 00000000 00000000 ...?...?........
    0x6a956ab8: 3f800000 3f800000 6a957000 000000f9 ...?...?.p.j....
    0x6a956ac8: 0d49e640 000001fc 00000000 00000000 @.I.............
    0x6a956ad8: 2eca7da0 000001fc 0d4a9e20 000001fc .}...... .J.....
    0x6a956ae8: 00000000 00000000 6a956b40 000000f9 ........@k.j....
    0x6a956af8: cdd806f3 000001fb 00000000 00000000 ................
    0x6a956b08: 6a957000 000000f9 2eca7da0 000001fc .p.j.....}......
    0x6a956b18: 0d4a9e20 000001fc 6a956bc0 000000f9 .J......k.j....
    0x6a956b28: cde6f173 000001fb 00000000 00000000 s...............
    0x6a956b38: 6a956b90 000000f9 6a956bc0 000000f9 .k.j.....k.j....
    0x6a956b48: cdd80683 000001fb 6a956b88 000000f9 .........k.j....
    0x6a956b58: 00000000 00000000 00000001 00000000 ................
    0x6a956b68: 6a956e28 000000f9 00000000 00000000 (n.j............
    0x6a956b78: 2dd28f30 000001fc 6a956e50 000000f9 0..-....Pn.j....
    0x6a956b88: 00000001 00000000 00000000 00000000 ................
    0x6a956b98: 3f000000 3f000000 3f000000 3f000000 ...?...?...?...?
    0x6a956ba8: 3f800000 3f800000 00000000 00000000 ...?...?........
    0x6a956bb8: 43be0000 43e08000 6a956ec0 000000f9 ...C...C.n.j....
    0x6a956bc8: cde6d003 000001fb fffffffe ffffffff ................
    0x6a956bd8: cff10f60 000001fb 6c3cd820 00007ff6 `....... .<l....
    0x6a956be8: f80b3d10 000001fb 00000001 00000000 .=..............
    0x6a956bf8: 41b00000 000000f9 00000000 00000000 ...A............
    0x6a956c08: 6a956e60 000000f9 b0e8bc20 000001fa `n.j.... .......
    0x6a956c18: 2dd28f30 000001fc 0d6f4a50 000001fc 0..-....PJo.....
    0x6a956c28: 6a957220 000000f9 6a957230 000000f9 r.j....0r.j....
    0x6a956c38: 00000001 00000000 2eca7da0 000001fc .........}......
    0x6a956c48: 00000000 00000000 00000001 00000000 ................
    0x6a956c58: 675d3500 00007ff6 10b33700 000001fb .5]g.....7......
    0x6a956c68: 00000000 00000000 00000001 00000000 ................
    0x6a956c78: 00000000 00000000 3f000000 3f000000 ...........?...?
    0x6a956c88: 3f000000 3f000000 3f800000 3f800000 ...?...?...?...?
    0x6a956c98: 00000000 42920000 43be0000 43eb0000 .......B...C...C
    0x6a956ca8: 0b1437b0 000001fc 00000001 00000000 .7..............
    0x6a956cb8: 00000000 00000000 43be0000 43eb0000 ...........C...C
    0x6a956cc8: c24b7d17 40b7ae12 c1200000 000001fc .}K....@.. .....
    0x6a956cd8: 3d1e484f be0831d6 3baa0e9f 3f7d8779 OH.=.1.....;y.}?
    0x6a956ce8: 3d1e484f be0831d6 3baa0e9f 3f7d8779 OH.=.1.....;y.}?
    0x6a956cf8: 3d1e484f be0831d6 3baa0e9f 3f7d8779 OH.=.1.....;y.}?
    0x6a956d08: c24b7d17 40b7ae12 c1200000 00000000 .}K....@.. .....
    0x6a956d18: 6a956e60 000000f9 fffffffe ffffffff `n.j............
    0x6a956d28: 2eca7da0 000001fc f80b3d10 000001fb .}.......=......
    0x6a956d38: 00000001 00000000 6a956e60 000000f9 ........`n.j....
    0x6a956d48: 68a138a2 00007ff6 00000001 00000000 .8.h............
    0x6a956d58: 6a956dc0 000000f9 6a957b00 000000f9 .m.j.....{.j....
    0x6a956d68: 6bfbb348 00007ff6 6a957b00 000000f9 H..k.....{.j....
    0x6a956d78: 6a956dc0 000000f9 6a956d50 000000f9 .m.j....Pm.j....
    0x6a956d88: 00000001 00000000 0d49e640 000001fc ........@.I.....
    0x6a956d98: 00000000 42920000 43be0000 43eb0000 .......B...C...C
    0x6a956da8: 00000000 42920000 43be0000 43eb0000 .......B...C...C
    0x6a956db8: 00000000 00000000 43be0000 43eb0000 ...........C...C
    0x6a956dc8: 00000000 00000000 00000000 00000000 ................
    0x6a956dd8: 00000000 00000000 00000000 00000000 ................
    0x6a956de8: 43be0000 43eb0000 00000000 00000000 ...C...C........
    0x6a956df8: 43be0000 43e08000 00000001 00000000 ...C...C........
    0x6a956e08: 00000000 00000000 3f000000 3f000000 ...........?...?
    0x6a956e18: 3f000000 3f000000 3f800000 3f800000 ...?...?...?...?
    0x6a956e28: 00000001 00000000 00000000 00000000 ................
    0x6a956e38: 3f000000 3f000000 3f000000 3f000000 ...?...?...?...?
    0x6a956e48: 3f800000 3f800000 00000000 00000000 ...?...?........
    0x6a956e58: 43be0000 43e08000 6bfb8e60 00007ff6 ...C...C`..k....
    0x6a956e68: 00000000 00000000 6a957b00 43eb0000 .........{.j...C
    0x6a956e78: 6a956ec0 000000f9 6a956e50 000000f9 .n.j....Pn.j....
    0x6a956e88: 00000001 00000000 0d49e640 000001fc ........@.I.....
    0x6a956e98: 0d49e640 000001fc 00000000 00000000 @.I.............
    0x6a956ea8: 0d49e640 000001fc 0d49e640 000001fc @.I.....@.I.....
    0x6a956eb8: 00000000 00000000 6a9575f0 000000f9 .........u.j....
    0x6a956ec8: cde4dd53 000001fb 30f85d20 000001fc S....... ].0....
    0x6a956ed8: 0d7c61b0 000001fc 2dc76780 000001fc .a|......g.-....
    0x6a956ee8: cf4411f1 000001fb 43e08000 ffffffff ..D........C....
    0x6a956ef8: ffffffff 3f800000 00000079 00000000 .......?y.......
    0x6a956f08: 00000000 00000000 f80b97b0 000001fb ................
    0x6a956f18: 6a956f60 000000f9 6a956ef0 000000f9 `o.j.....n.j....
    0x6a956f28: 0d8047e0 000001fc 2dcee000 000001fc .G.........-....
    0x6a956f38: 0000001e 00000000 2dd28f30 000001fc ........0..-....
    0x6a956f48: 0d4a9e20 000001fc 0000001e 00000000 .J.............
    0x6a956f58: 2dcee000 000001fc 6a956fa0 000000f9 ...-.....o.j....
    0x6a956f68: 0af0049b 000001fc 00000079 00000000 ........y.......
    0x6a956f78: 9937f640 00007ffa 00000079 00000000 @.7.....y.......
    0x6a956f88: 0000007b 00000000 6a957020 000000f9 {....... p.j....
    0x6a956f98: cf4411f1 000001fb 6a957050 000000f9 ..D.....Pp.j....
    0x6a956fa8: 2edffe7b 000001fc 0000007c 00000000 {.......|.......
    0x6a956fb8: 9941b172 00007ffa f80b97b0 000001fb r.A.............
    0x6a956fc8: 6a957010 000000f9 6a956fa0 000000f9 .p.j.....o.j....
    0x6a956fd8: 9f18f9a9 00000000 30f85d00 000001fc .........].0....
    0x6a956fe8: 2dce5c00 000001fc 2dc76701 000001fc .\.-.....g.-....
    0x6a956ff8: 9f18f900 00000000 30f85d01 000001fc .........].0....
    0x6a957008: ffffffff 000001fc 2dc76780 42200000 .........g.-.. B
    0x6a957018: 3f800000 3f800000 3f800000 3f800000 ...?...?...?...?
    0x6a957028: 3f800000 3f800000 00000000 00000000 ...?...?........
    0x6a957038: 3f800000 3f800000 00000000 41a80000 ...?...?.......A
    0x6a957048: 43be0000 43e08000 00000000 00000000 ...C...C........
    0x6a957058: 43be0000 43e08000 00000000 00000000 ...C...C........
    0x6a957068: 43be0000 43e08000 00000000 00000000 ...C...C........
    0x6a957078: 00000000 00000000 00000000 00000000 ................
    0x6a957088: 00000000 00000000 00000000 00000000 ................
    0x6a957098: 00000000 00000000 00000000 00000000 ................
    0x6a9570a8: 00000000 00000000 00000000 00000000 ................
    0x6a9570b8: 3f800000 3f800000 3f800000 3f800000 ...?...?...?...?
    0x6a9570c8: 00000000 41980000 43be0000 43eb0000 .......A...C...C
    0x6a9570d8: 00000000 00000000 00000000 00000000 ................
    0x6a9570e8: 3f800000 3f800000 3f800000 3f800000 ...?...?...?...?
    0x6a9570f8: 00000000 00000000 00000000 00000000 ................
    0x6a957108: 00000000 00000000 00000000 00000000 ................
    0x6a957118: 00000000 41980000 43be0000 43eb0000 .......A...C...C
    0x6a957128: 3f42c2c3 3f42c2c3 3f42c2c3 3f800000 ..B?..B?..B?...?
    0x6a957138: 3f42c2c3 3f42c2c3 3f800000 3f800000 ..B?..B?...?...?
    0x6a957148: 3f800000 3f800000 3f800000 3f800000 ...?...?...?...?
    0x6a957158: 3f800000 3f800000 3f42c2c3 3f800000 ...?...?..B?...?
    0x6a957168: 00000000 41a80000 43be0000 43e08000 .......A...C...C
    0x6a957178: 00000000 41a80000 43be0000 43e08000 .......A...C...C
    0x6a957188: 00000000 00000000 43be0000 43e08000 ...........C...C
    0x6a957198: 00000000 00000000 43be0000 43e08000 ...........C...C
    0x6a9571a8: 00000000 41a80000 43be0000 43e08000 .......A...C...C
    0x6a9571b8: 00000000 41a80000 43be0000 43e08000 .......A...C...C
    0x6a9571c8: 00000000 00000000 43be0000 43e08000 ...........C...C
    0x6a9571d8: 00000000 00000000 43be0000 43e08000 ...........C...C
    0x6a9571e8: 00000000 00000000 43be0000 43e08000 ...........C...C
    0x6a9571f8: 6a957290 000000f9 00000000 41a80000 .r.j...........A
    0x6a957208: 43be0000 43e08000 00000000 00000000 ...C...C........
    0x6a957218: 43be0000 43e08000 00000000 00000000 ...C...C........
    0x6a957228: 43be0000 43e08000 00000000 41a80000 ...C...C.......A
    0x6a957238: 43be0000 43e08000 43be0000 43eb0000 ...C...C...C...C
    0x6a957248: 3f800000 00000000 00000000 3f800000 ...?...........?
    0x6a957258: 3f800000 00000000 00000000 3f800000 ...?...........?
    0x6a957268: 3f800000 3f800000 3f800000 3f800000 ...?...?...?...?
    0x6a957278: 3f800000 3f800000 3f800000 3f800000 ...?...?...?...?
    0x6a957288: 3f800000 3f800000 3f800000 3f800000 ...?...?...?...?
    0x6a957298: 3f800000 00000000 00000000 3f800000 ...?...........?
    0x6a9572a8: 3f800000 00000000 00000000 3f800000 ...?...........?
    0x6a9572b8: 00000000 41980000 43be0000 43eb0000 .......A...C...C
    0x6a9572c8: 2dc3ae80 000001fc 6a957310 000000f9 ...-.....s.j....
    0x6a9572d8: 0af0049b 000001fc 2dce5c00 000001fc .........\.-....
    0x6a9572e8: cf4411f1 000001fb 6a957378 000000f9 ..D.....xs.j....
    0x6a9572f8: 0d8047e0 000001fc 00000000 00000000 .G..............
    0x6a957308: 6a957460 000000f9 f80b97b0 000001fb `t.j............
    0x6a957318: 6a957360 000000f9 6a9572f0 000000f9 `s.j.....r.j....
    0x6a957328: 0d8047e0 000001fc 00000000 00000000 .G..............
    0x6a957338: 0d8047e0 000001fc 00000000 00000000 .G..............
    0x6a957348: 0000007c 00000000 00000000 00000000 |...............
    0x6a957358: 2dc3ae80 000001fc 6a9573a0 000000f9 ...-.....s.j....
    0x6a957368: 0af0049b 000001fc 9f18f9a9 ffffffff ................
    0x6a957378: 9f18f9a9 00000000 30f85d20 000001fc ........ ].0....
    0x6a957388: 2dce5c00 000001fc 2dc76780 000001fc .\.-.....g.-....
    0x6a957398: 6a957630 000000f9 6a9575a0 000000f9 0v.j.....u.j....
    0x6a9573a8: cdd936fb 000001fb 6a9573c0 000000f9 .6.......s.j....
    0x6a9573b8: 00000000 00000000 0000ffff 00000000 ................
    0x6a9573c8: 675ccba6 00007ff6 00000001 000001fb ..\g............
    0x6a9573d8: 30f85d20 000001fc 6a957620 000000f9 ].0.... v.j....
    0x6a9573e8: 6a957628 000000f9 2dce5c00 000001fc (v.j.....\.-....
    0x6a9573f8: 2dc76780 000001fc 6a957658 000000f9 .g.-....Xv.j....
    0x6a957408: 9f18f9a9 ffffffff fffffffe ffffffff ................
    0x6a957418: 00000000 00000000 00000000 00000000 ................
    0x6a957428: 108fc4bf 00007ffb 032a03aa 00000000 ..........*.....
    0x6a957438: 00000090 00000000 8e7d0a00 000001fc ..........}.....
    0x6a957448: 9f18f9a9 00000000 30f85d20 000001fc ........ ].0....
    0x6a957458: 108fc55e 00007ffb 00000000 00000000 ^...............
    0x6a957468: 6abb9000 000001fa 756e80b0 000001fc ...j......nu....
    0x6a957478: 6abb0000 000001fa 6abb02c4 000001fa ...j.......j....
    0x6a957488: 3f800000 3f800000 00000090 00000000 ...?...?........
    0x6a957498: 6abb0cf0 000001fa 0000007c 00000000 ...j....|.......
    0x6a9574a8: 00000000 00000000 00000080 00000000 ................
    0x6a9574b8: 00000000 00000000 00000000 00000000 ................
    0x6a9574c8: 00000009 00000000 00000090 00000000 ................
    0x6a9574d8: 6a957599 000000f9 6abf0000 000001fa .u.j.......j....
    0x6a9574e8: 108fba17 00007ffb 6abb0000 000001fa ...........j....
    0x6a9574f8: 00000001 00000000 00000080 00000000 ................
    0x6a957508: 00000000 000000f9 6abf0000 000001fa ...........j....
    0x6a957518: 108fba17 00007ffb 8fb37e10 000001fc .........~......
    0x6a957528: 00000001 000001fa 00000010 00000000 ................
    0x6a957538: 00000008 00007ff6 00000000 00000000 ................
    0x6a957548: 6abb0cf0 000001fa 59c8b760 000001fc ...j....`..Y....
    0x6a957558: 00000000 00000000 00000006 00000000 ................
    0x6a957568: 00000000 00000000 00000000 00000000 ................
    0x6a957578: 00000001 00000000 00000010 00000000 ................
    0x6a957588: 6a957649 000000f9 6abf0000 000001fa Iv.j.......j....
    0x6a957598: 108fba17 00007ffb 6abb0000 43e08000 ...........j...C
    0x6a9575a8: 00000001 00007ff6 00000006 00000000 ................
    0x6a9575b8: 00000000 ffffffff 6aceed00 000001fa ...........j....
    0x6a9575c8: 67c263ba 00007ff6 00000010 00000000 .c.g............
    0x6a9575d8: 00000000 00000000 cde4d3b0 000001fb ................
    0x6a9575e8: 6a957a30 000000f9 6a957680 000000f9 0z.j.....v.j....
    0x6a9575f8: 0af5d34e 000001fc 00000002 00000000 N...............
    0x6a957608: 9937bed9 00007ffa 00000034 00000000 ..7.....4.......
    0x6a957618: 9937f640 00007ffa 00000080 00000000 @.7.............
    0x6a957628: 00000000 00000000 00000000 00000000 ................
    0x6a957638: 00000000 00000000 00000000 00000000 ................
    0x6a957648: 00000000 00000000 00000000 00000000 ................
    0x6a957658: 093693d8 000001fc 6a957a30 000000f9 ..6.....0z.j....
    0x6a957668: 093693d8 000001fc 00000000 00000000 ..6.............
    0x6a957678: 6a957a30 000000f9 6a9576c0 000000f9 0z.j.....v.j....
    0x6a957688: 9948cd50 00007ffa faa642e3 00000000 P.H......B......
    0x6a957698: 6a957a30 000000f9 00000000 000000f9 0z.j............
    0x6a9576a8: 093693d8 000001fc 756e80b0 000001fc ..6.......nu....
    0x6a9576b8: 00000000 000004af 00000000 00000000 ................
    0x6a9576c8: ce5dd7c0 000001fb 0d49e640 000001fc ..].....@.I.....
    0x6a9576d8: 00000000 00000000 2eca7da0 000001fc .........}......
    0x6a9576e8: cff17d20 000001fb 00000000 00000000 }..............
    0x6a9576f8: 1090083d 00007ffb 6a957a30 000000f9 =.......0z.j....
    0x6a957708: 00000000 00000000 00000034 00000000 ........4.......
    0x6a957718: 310b3450 000001fc 59c8b760 000001fc P4.1....`..Y....
    0x6a957728: 108ffc11 00007ffb 7b282d70 000001fc ........p-({....
    0x6a957738: 6abf0000 00000034 6a957850 000000f9 ...j4...Px.j....
    0x6a957748: 8246d030 000001fc 00000000 00000000 0.F.............
    0x6a957758: f80b3d10 000001fb 00000000 00000000 .=..............
    0x6a957768: 996c6344 00007ffa 59c8b760 000001fc Dcl.....`..Y....
    0x6a957778: 99362399 00007ffa 00000000 00000000 .#6.............
    0x6a957788: 30f828d0 000001fc 00000034 00000000 .(.0....4.......
    0x6a957798: 310b3450 000001fc 8246d3e0 000001fc P4.1......F.....
    0x6a9577a8: 108ffc11 00007ffb cff17d20 000001fb ........ }......
    0x6a9577b8: 99458d5f 00007ffa 09376778 000001fc _.E.....xg7.....
    0x6a9577c8: 9937f460 00007ffa 00000000 00000000 `.7.............
    0x6a9577d8: 00000001 00000000 00000000 00000000 ................
    0x6a9577e8: 996c6344 00007ffa 6a9578a8 000000f9 Dcl......x.j....
    0x6a9577f8: 99450acd 00007ffa cff17d20 000001fb ..E..... }......
    0x6a957808: 9937f460 00007ffa b1181a06 00003c5b `.7.........[<..
    0x6a957818: 0917da50 000001fc 093693d8 000001fc P.........6.....
    0x6a957828: 00000000 00000000 0d49e640 000001fc ........@.I.....
    0x6a957838: 093693d8 000001fc 0d49e640 000001fc ..6.....@.I.....
    0x6a957848: 093693d8 000001fc 00000000 00000000 ..6.............
    0x6a957858: 6a957a30 000000f9 00000000 00000000 0z.j............
    0x6a957868: 99412142 00007ffa f80b3d10 000001fb B!A......=......
    0x6a957878: 00000001 00000000 00000000 000000f9 ................
    0x6a957888: 994278a5 00007ffa 6a957a30 000000f9 .xB.....0z.j....
    0x6a957898: 9939ca09 00007ffa 00000000 00000000 ..9.............
    0x6a9578a8: 00000000 00000000 6a957a30 000000f9 ........0z.j....
    0x6a9578b8: 9941b312 00007ffa 093693d8 000001fc ..A.......6.....
    0x6a9578c8: 0d49e640 000001fc 00000000 00000000 @.I.............
    0x6a9578d8: 00000001 00000000 6a957a30 000000f9 ........0z.j....
    0x6a9578e8: 994113dd 00007ffa 00000000 00000000 ..A.............
    0x6a9578f8: 9941baa9 00007ffa 00000000 00000000 ..A.............
    0x6a957908: 6a957930 000000f9 6a957a30 000000f9 0y.j....0z.j....
    0x6a957918: f7fb48b0 000001fb f7fb48b0 000001fb .H.......H......
    0x6a957928: 99418ac1 00007ffa 00000000 000001fc ..A.............
    0x6a957938: 0d49e640 000001fc 0917da50 000001fc @.I.....P.......
    0x6a957948: 6a957a10 000000f9 00000000 00000000 .z.j............
    0x6a957958: 00000000 00000000 b11815f6 00003c5b ............[<..
    0x6a957968: 99418bbc 00007ffa 6a957bb0 000000f9 ..A......{.j....
    0x6a957978: 00000000 00000000 0917da50 000001fc ........P.......
    0x6a957988: 0d49e640 000001fc 6a957a10 000000f9 @.I......z.j....
    0x6a957998: 9941b2a6 00007ffa 00000000 00000000 ..A.............
    0x6a9579a8: 0d49e640 000001fc 093693d8 000001fc @.I.......6.....
    0x6a9579b8: 093766c0 000001fc 6a957a30 000000f9 .f7.....0z.j....
    0x6a9579c8: cda09d60 000001fb 093693d8 000001fc `.........6.....
    0x6a9579d8: 993c02d4 00007ffa 00000000 00000000 ..<.............
    0x6a9579e8: 0d49e640 000001fc 0d49e640 000001fc @.I.....@.I.....
    0x6a9579f8: 0af57ae3 000001fc 00000000 00000000 .z..............
    0x6a957a08: 00000000 00000000 00000000 00000000 ................
    0x6a957a18: 00000000 00000000 0917da50 000001fc ........P.......
    0x6a957a28: 0b0932c0 000001fc 00000000 000000f9 .2..............
    0x6a957a38: 0af57a6b 000001fc 0b0932c0 000001fc kz.......2......
    0x6a957a48: 00000000 00000000 310b3450 000001fc ........P4.1....
    0x6a957a58: 00000000 00000000 00000000 00000000 ................
    0x6a957a68: 0b0932c0 000001fc 6a957ab0 000000f9 .2.......z.j....
    0x6a957a78: 0af57a28 000001fc 00000000 00000000 (z..............
    0x6a957a88: 00000000 00000000 00000000 00000000 ................
    0x6a957a98: 00000000 00000000 b11816d6 00003c5b ............[<..
    0x6a957aa8: 0b0932c0 000001fc 0d49e640 000001fc .2......@.I.....
    0x6a957ab8: 310b3450 000001fc f80b3d10 000001fb P4.1.....=......
    0x6a957ac8: 310b3450 000001fc 6a957b50 000000f9 P4.1....P{.j....
    0x6a957ad8: 0af3062d 000001fc 00000001 00000000 -...............
    0x6a957ae8: 6a957bb0 000000f9 00000000 00000000 .{.j............
    0x6a957af8: 0b13d640 000001fc f80b97b0 000001fb @...............
    0x6a957b08: 6a957b50 000000f9 6a957ae0 000000f9 P{.j.....z.j....
    0x6a957b18: 00000001 00000000 00000000 00000000 ................
    0x6a957b28: 00000000 00000000 310b3450 000001fc ........P4.1....
    0x6a957b38: 00000000 00000000 00000000 00000000 ................
    0x6a957b48: 0b13d640 000001fc 6a957c10 000000f9 @........|.j....
    0x6a957b58: 08a4fefb 000001fc 6a957b01 000000f9 .........{.j....
    0x6a957b68: 00000000 00000000 310b3450 000001fc ........P4.1....
    0x6a957b78: 00000001 00000001 00000000 00000000 ................
    0x6a957b88: 30f828d0 000001fc 00000000 00000000 .(.0............
    0x6a957b98: 00000000 00000000 00000000 00000000 ................
    0x6a957ba8: 0d49e640 000001fc 00000000 00000000 @.I.............
    0x6a957bb8: 91e16780 000001fc 00000000 ffffffff .g..............
    0x6a957bc8: 00000048 00000000 00000003 00000000 H...............
    0x6a957bd8: 00000000 00000000 00000000 00000000 ................
    0x6a957be8: 00000034 00000000 0d49e640 000001fc 4.......@.I.....
    0x6a957bf8: 310b3450 000001fc 310a3620 000001fc P4.1.... 6.1....
    0x6a957c08: 310b3450 000001fc 6a957c70 000000f9 P4.1....p|.j....
    0x6a957c18: 08a4fe1e 000001fc 00000048 000001fc ........H.......
    0x6a957c28: 310a3620 000001fc 00000000 00000000 6.1............
    0x6a957c38: 00000001 00000000 00000000 00000000 ................
    0x6a957c48: 00000000 00000000 310a3620 000001fc ........ 6.1....
    0x6a957c58: 00000000 00000000 0d49e640 000001fc ........@.I.....
    0x6a957c68: 2dc092c0 000001fc 6a957cc0 000000f9 ...-.....|.j....
    0x6a957c78: 2edd569b 000001fc 6a957c50 000000f9 .V......P|.j....
    0x6a957c88: 00000001 00000000 2dc092c0 000001fc ...........-....
    0x6a957c98: 6a957da8 000000f9 310a3620 000001fc .}.j.... 6.1....
    0x6a957ca8: 2dc092c0 000001fc 2dc092c0 000001fc ...-.......-....
    0x6a957cb8: 2dc092c0 000001fc 6a957d00 000000f9 ...-.....}.j....
    0x6a957cc8: 2edd5623 000001fc 2dc092c0 000001fc #V.........-....
    0x6a957cd8: 30f82900 000001fc 91dd1f30 000001fc .).0....0.......
    0x6a957ce8: 2dc092c0 000001fc 30f828d0 000001fc ...-.....(.0....
    0x6a957cf8: 91dd1f30 000001fc 6a957e50 000000f9 0.......P~.j....
    0x6a957d08: cdd85cb3 000001fb 43be8000 43f58000 .\.........C...C
    0x6a957d18: 00000000 00000000 f80b97b0 000001fb ................
    0x6a957d28: 00000000 43f30000 43be8000 40a00000 .......C...C...@
    0x6a957d38: 00000007 00000000 6a957e98 000000f9 .........~.j....
    0x6a957d48: 6a957ea8 000000f9 2dc092c0 000001fc .~.j.......-....
    0x6a957d58: 00000000 00000000 00000001 00000000 ................
    0x6a957d68: 2dc092c0 000001fc 6a957e00 000000f9 ...-.....~.j....
    0x6a957d78: cdd80400 000001fb 2dc09200 000001fc ...........-....
    0x6a957d88: 00000000 00000000 91dd1f30 000001fc ........0.......
    0x6a957d98: 43be8000 43f58000 00000000 00000018 ...C...C........
    0x6a957da8: 00000000 00000018 00000000 41980000 ...............A
    0x6a957db8: 43be0000 43eb0000 00000000 43f30000 ...C...C.......C
    0x6a957dc8: 43be8000 40a00000 43b38000 3f800000 ...C...@...C...?
    0x6a957dd8: 41800000 41800000 0d7e9cf0 000001fc ...A...A..~.....
    0x6a957de8: 00000000 00000000 0d7e9d80 000001fc ..........~.....
    0x6a957df8: 6a958078 000000f9 00000000 00000000 x..j............
    0x6a957e08: 43be8000 43f58000 00000000 00000000 ...C...C........
    0x6a957e18: 43be8000 43f58000 43bc0000 00000000 ...C...C...C....
    0x6a957e28: 40a00000 43f58000 43bc0000 00000000 ...@...C...C....
    0x6a957e38: 40a00000 43f58000 00000000 00000000 ...@...C........
    0x6a957e48: 0d6d3000 000001fc 6a957ec0 000000f9 .0m......~.j....
    0x6a957e58: cdd85963 000001fb 43be8000 43f58000 cY.........C...C
    0x6a957e68: 00000000 00000000 43810000 440b8000 ...........C...D
    0x6a957e78: 00000000 00000000 43b30000 41980000 ...........C...A
    0x6a957e88: 6a9580a8 000000f9 6a9580b8 000000f9 ...j.......j....
    0x6a957e98: 00000000 41980000 43be0000 43eb0000 .......A...C...C
    0x6a957ea8: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a957eb8: 2dc092c0 000001fc 6a958110 000000f9 ...-.......j....
    0x6a957ec8: cdd76493 000001fb 00000000 3fe00000 .d.............?
    0x6a957ed8: 00000000 00000000 739cafcf 40595fa6 ...........s._Y@
    0x6a957ee8: 00000000 00000000 41980000 40595fc1 ...........A._Y@
    0x6a957ef8: 00000000 00000000 00000000 00000000 ................
    0x6a957f08: 00000000 4077c000 00000000 4077c000 ......w@......w@
    0x6a957f18: 00000000 00000000 6a957f78 000000f9 ........x..j....
    0x6a957f28: 6781a2b4 00000000 43be8001 43f58000 ...g.......C...C
    0x6a957f38: 00000000 00000000 00000000 3f800000 ...............?
    0x6a957f48: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a957f58: 00000000 422c0000 44f00000 44794000 ......,B...D.@yD
    0x6a957f68: 00000000 41980000 43be0000 43eb0000 .......A...C...C
    0x6a957f78: 00000000 00000000 43be0000 41980000 ...........C...A
    0x6a957f88: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a957f98: 00000000 00000000 43b30000 41980000 ...........C...A
    0x6a957fa8: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a957fb8: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a957fc8: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a957fd8: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a957fe8: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a957ff8: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a958008: 00000000 00000000 43b30000 41980000 ...........C...A
    0x6a958018: 00000000 00000000 43be0000 41980000 ...........C...A
    0x6a958028: 00000000 00000000 43be0000 41980000 ...........C...A
    0x6a958038: 00000000 00000000 43b30000 41980000 ...........C...A
    0x6a958048: 00000000 00000000 43b30000 41980000 ...........C...A
    0x6a958058: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a958068: 00000000 00000000 43b30000 41980000 ...........C...A
    0x6a958078: 00000000 00000000 43b30000 41980000 ...........C...A
    0x6a958088: 00000000 41980000 43be0000 43eb0000 .......A...C...C
    0x6a958098: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a9580a8: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a9580b8: 00000000 41980000 43be0000 43eb0000 .......A...C...C
    0x6a9580c8: 6a958110 000000f9 6a9580a0 000000f9 ...j.......j....
    0x6a9580d8: 00000001 00000000 00000000 00000000 ................
    0x6a9580e8: 00000001 00000000 310a3620 000001fc ........ 6.1....
    0x6a9580f8: 00000000 41b00000 0d6d8d00 000001fc .......A..m.....
    0x6a958108: 0d6d3000 000001fc 6a9584d0 000000f9 .0m........j....
    0x6a958118: cdd5d142 000001fb 3f800000 00000000 B..........?....
    0x6a958128: 00000000 00000000 00000000 3f800000 ...............?
    0x6a958138: 3f800000 00000000 00000000 00000000 ...?............
    0x6a958148: 00000000 00000000 00000000 00000000 ................
    0x6a958158: 00000000 00000000 6a958610 000000f9 ...........j....
    0x6a958168: 6a958620 000000f9 0d463020 000001fc ..j.... 0F.....
    0x6a958178: 0d6d3000 000001fc 00000000 00000000 .0m.............
    0x6a958188: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958198: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a9581a8: 00000000 00000000 00000000 3f800000 ...............?
    0x6a9581b8: 3f800000 00000000 00000000 00000000 ...?............
    0x6a9581c8: 00000000 3f800000 00000000 00000000 .......?........
    0x6a9581d8: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a9581e8: 00000000 00000000 00000000 3f800000 ...............?
    0x6a9581f8: 00000000 00000000 00000000 00000000 ................
    0x6a958208: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958218: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a958228: 00000000 00000000 00000000 3f800000 ...............?
    0x6a958238: 3f800000 00000000 00000000 00000000 ...?............
    0x6a958248: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958258: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a958268: 00000000 00000000 00000000 3f800000 ...............?
    0x6a958278: 3f800000 00000000 00000000 00000000 ...?............
    0x6a958288: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958298: 00000000 00000000 00000000 00000000 ................
    0x6a9582a8: 00000000 00000000 00000000 00000000 ................
    0x6a9582b8: 3f800000 00000000 00000000 00000000 ...?............
    0x6a9582c8: 00000000 3f800000 00000000 00000000 .......?........
    0x6a9582d8: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a9582e8: 00000000 00000000 00000000 00000000 ................
    0x6a9582f8: 3f800000 00000000 6bfc0d50 00007ff6 ...?....P..k....
    0x6a958308: 68a12029 00007ff6 00000000 00000000 ) .h............
    0x6a958318: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a958328: 00000000 00000000 00000000 3f800000 ...............?
    0x6a958338: 6782cafe 00007ff6 00000000 00000000 ...g............
    0x6a958348: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958358: 00000007 00007ff6 00000000 00000000 ................
    0x6a958368: 00000000 00007ff6 ffea3000 40595fc1 .........0..._Y@
    0x6a958378: 00000000 00000000 3f800000 3f800000 ...........?...?
    0x6a958388: 3f800000 3f800000 3f800000 3f800000 ...?...?...?...?
    0x6a958398: 3f800000 3f800000 00000000 00000000 ...?...?........
    0x6a9583a8: 43be8000 43f58000 3f800000 00000000 ...C...C...?....
    0x6a9583b8: 00000000 00000000 00000000 3f800000 ...............?
    0x6a9583c8: 00000000 00000000 00000000 00000000 ................
    0x6a9583d8: 3f800000 00000000 00000000 00000000 ...?............
    0x6a9583e8: 00000000 3f800000 310a3620 000001fc .......? 6.1....
    0x6a9583f8: 00000000 00000000 00000001 00000000 ................
    0x6a958408: 0d6d3000 000001fc 6a958450 000000f9 .0m.....P..j....
    0x6a958418: 2edb8293 000001fc 00000000 00000000 ................
    0x6a958428: 00000000 00000000 00000000 00000000 ................
    0x6a958438: 3f800000 00000000 0d6e4fa0 000001fc ...?.....On.....
    0x6a958448: 00000007 43f58000 6a9584d0 000000f9 .......C...j....
    0x6a958458: 2edb7c43 000001fc 0d463020 000001fc C|...... 0F.....
    0x6a958468: 00000001 00000000 6bfb8d40 00007ff6 ........@..k....
    0x6a958478: 0d463020 000001fc f80b97b0 000001fb 0F.............
    0x6a958488: 6a958401 000000f9 00000000 00000000 ...j............
    0x6a958498: 43be8000 43f58000 00000000 00000000 ...C...C........
    0x6a9584a8: 43be8000 43f58000 310a3620 43f58000 ...C...C 6.1...C
    0x6a9584b8: 6a9585f0 000000f9 00000000 00000000 ...j............
    0x6a9584c8: 0d463020 000001fc 6a958680 000000f9 0F........j....
    0x6a9584d8: cdd5c36b 000001fb 3f800000 00000000 k..........?....
    0x6a9584e8: 00000000 00000000 00000000 3f800000 ...............?
    0x6a9584f8: 3f800000 00000000 00000000 00000000 ...?............
    0x6a958508: 6a958600 000000f9 00000001 00000000 ...j............
    0x6a958518: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a958528: 6a958578 000000f9 6a9588c8 000000f9 x..j.......j....
    0x6a958538: 6a9588d8 000000f9 00000000 00000000 ...j............
    0x6a958548: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958558: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a958568: 00000000 00000000 00000007 3f800000 ...............?
    0x6a958578: 3f800101 00000000 00000000 00000000 ...?............
    0x6a958588: 43be8000 43f58000 00000000 00000000 ...C...C........
    0x6a958598: 43be8000 43f58000 00000000 00000000 ...C...C........
    0x6a9585a8: 43be8000 43f58000 3f800000 00000000 ...C...C...?....
    0x6a9585b8: 00000000 00000000 00000000 3f800000 ...............?
    0x6a9585c8: 00000000 00000000 00000000 00000000 ................
    0x6a9585d8: 3f800000 00000000 00000000 00000000 ...?............
    0x6a9585e8: 00000000 3f800000 00000000 00000000 .......?........
    0x6a9585f8: 43be8000 43f58000 00000000 00000000 ...C...C........
    0x6a958608: 43be8000 43f58000 00000000 00000000 ...C...C........
    0x6a958618: 43be8000 43f58000 3f800000 00000000 ...C...C...?....
    0x6a958628: 00000000 00000000 00000000 3f800000 ...............?
    0x6a958638: 00000000 00000000 00000000 00000000 ................
    0x6a958648: 3f800000 00000000 00000000 00000000 ...?............
    0x6a958658: 00000000 3f800000 0d6d3000 000001fc .......?.0m.....
    0x6a958668: 310a3620 000001fc 310a3620 000001fc 6.1.... 6.1....
    0x6a958678: 00000003 00000000 6a958920 000000f9 ........ ..j....
    0x6a958688: cdd5ab93 000001fb bf7fffc0 3f800000 ...............?
    0x6a958698: bf7aee42 3f800000 00000000 00000000 B.z....?........
    0x6a9586a8: 00000000 00000000 00000001 00000000 ................
    0x6a9586b8: 00000000 00000000 0d463020 000001fc ........ 0F.....
    0x6a9586c8: 3f800000 00000000 00000000 00000000 ...?............
    0x6a9586d8: 00000000 3f800000 00000000 00000000 .......?........
    0x6a9586e8: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a9586f8: 00000000 00000000 00000000 3f800000 ...............?
    0x6a958708: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a958718: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a958728: 3f800000 00000000 00000000 00000000 ...?............
    0x6a958738: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958748: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a958758: 00000000 00000000 00000000 3f800000 ...............?
    0x6a958768: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a958778: 3f800000 00000000 00000000 00000000 ...?............
    0x6a958788: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958798: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a9587a8: 00000000 00000000 00000000 3f800000 ...............?
    0x6a9587b8: 3f800000 00000000 00000000 00000000 ...?............
    0x6a9587c8: 00000000 3f800000 00000000 00000000 .......?........
    0x6a9587d8: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a9587e8: 00000000 00000000 00000000 3f800000 ...............?
    0x6a9587f8: 3f800000 00000000 00000000 00000000 ...?............
    0x6a958808: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958818: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a958828: 00000000 00000000 00000000 3f800000 ...............?
    0x6a958838: 3f800000 00000000 00000000 00000000 ...?............
    0x6a958848: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958858: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a958868: 00000000 00000000 00000000 3f800000 ...............?
    0x6a958878: 3f800000 00000000 00000000 00000000 ...?............
    0x6a958888: 00000000 3f800000 00000000 00000000 .......?........
    0x6a958898: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a9588a8: 00000000 00000000 00000000 3f800000 ...............?
    0x6a9588b8: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a9588c8: 00000000 00000000 43be8000 43f58000 ...........C...C
    0x6a9588d8: 3f800000 00000000 00000000 00000000 ...?............
    0x6a9588e8: 00000000 3f800000 00000000 00000000 .......?........
    0x6a9588f8: 00000000 00000000 3f800000 00000000 ...........?....
    0x6a958908: 00000000 00000000 00000000 3f800000 ...............?
    0x6a958918: cff30180 000001fb 6a959320 000000f9 ........ ..j....
    0x6a958928: cdd59673 000001fb 59c8af60 000001fc s.......`..Y....

    Module 1
    C:\WINDOWS\SYSTEM32\xinput1_3.dll
    Image Base: 0x00400000 Image Size: 0x0001e000
    File Size: 107368 File Time: 2007-04-04_185422
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® DirectX for Windows®
    FileDesc: Microsoft Common Controller API
    FileVer: 9.18.944.0
    ProdVer: 9.18.944.0

    Module 2
    C:\WINDOWS\SYSTEM32\MSVCP100.dll
    Image Base: 0x56580000 Image Size: 0x00098000
    File Size: 608080 File Time: 2011-06-11_021538
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Visual Studio® 2010
    FileDesc: Microsoft® C Runtime Library
    FileVer: 10.0.40219.325
    ProdVer: 10.0.40219.325

    Module 3
    C:\WINDOWS\SYSTEM32\MSVCR100.dll
    Image Base: 0x58a30000 Image Size: 0x000d2000
    File Size: 829264 File Time: 2011-06-11_021538
    Version:
    Company: Microsoft Corporation
    Product: Microsoft® Visual Studio® 2010
    FileDesc: Microsoft® C Runtime Library
    FileVer: 10.0.40219.325
    ProdVer: 10.0.40219.325

    Crash Report configuration:
    * App Name: Unity Editor
    * App Version: Unity 2020.1.0a17_ccc6f9131a63
    * Mono DLL: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll
    * Bug Reporter App Path: "D:/UnityHubInstalls/2020.1.0a17/Editor/BugReporter/UnityBugReporter.exe" --bugtype crash --editor_mode "WindowsStandaloneSupport" --unity_project "D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree" <attachFile:--attach "<file>"> --crash_report_id <meta:ClientReportID>
    * Crash Report Path: C:\Users\chris\AppData\Local\Temp\Unity\Editor\Crashes
    * Is Editor: true

    Crash Report metadata:

    Additional report files:
    * "C:\Users\chris\AppData\Local\Unity\Editor\Editor.log" (Output log file)



    == [end of error.log] ==

    [Licensing::Module] Channel doesn't exist: "LicenseClient-chris"
    [Licensing::Module] Successfully launched the LicensingClient (PId: 67344)
    [Licensing::Module] Successfully connected to LicensingClient on channel: "LicenseClient-chris"
    Entitlement-based licensing initiated
    [LicensingClient] Licenses updated successfully

    LICENSE SYSTEM [20191222 11:30:23] Next license update check is after 2019-12-21T17:27:56

    Built from 'trunk' branch; Version is '2020.1.0a17 (ccc6f9131a63) revision 13420281'; Using compiler version '192227905'; Build Type 'Release'
    OS: 'Windows 10 (10.0.0) 64bit' Language: 'en' Physical Memory: 32710 MB
    [Licensing::Module] Serial number assigned to: "F4-RANN-TJY6-F38B-8U43-XXXX"
    BatchMode: 0, IsHumanControllingUs: 1, StartBugReporterOnCrash: 1, Is64bit: 1, IsPro: 0
    [Package Manager] Server::Start -- Port 59720 was selected

    COMMAND LINE ARGUMENTS:
    D:\UnityHubInstalls\2020.1.0a17\Editor\Unity.exe
    -projectpath
    D:/Unity/ECS-Octree-master/ECS-Octree-master/ECS-Octree
    -useHub
    -hubIPC
    -cloudEnvironment
    production
    -hubSessionId
    0bd8cbc0-234e-11ea-a85d-91e281a4f766
    -accessToken
    nUrvWlUHA92nFIeUDshB3Ysbh2FjGCgBvkRGcjEBUO0001f
    Successfully changed project path to: D:/Unity/ECS-Octree-master/ECS-Octree-master/ECS-Octree
    D:/Unity/ECS-Octree-master/ECS-Octree-master/ECS-Octree
    Using Asset Import Pipeline V2.
    [Package Manager] Done resolving packages in 2.73s seconds
    [Package Manager] Done checking package constraints in 0.04s seconds
    [Package Manager]
    Registered 57 packages:
    Packages from [https://packages.unity.com]:
    com.unity.analytics@3.3.2 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.analytics@3.3.2)
    com.unity.burst@1.2.0-preview.10 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.burst@1.2.0-preview.10)
    com.unity.collab-proxy@1.3.2 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.collab-proxy@1.3.2)
    com.unity.collections@0.2.0-preview.13 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.collections@0.2.0-preview.13)
    com.unity.entities@0.2.0-preview.18 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.entities@0.2.0-preview.18)
    com.unity.ide.rider@1.1.4 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.ide.rider@1.1.4)
    com.unity.ide.visualstudio@2.0.0 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.ide.visualstudio@2.0.0)
    com.unity.ide.vscode@1.1.3 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.ide.vscode@1.1.3)
    com.unity.jobs@0.2.1-preview.3 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.jobs@0.2.1-preview.3)
    com.unity.mathematics@1.1.0 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.mathematics@1.1.0)
    com.unity.rendering.hybrid@0.2.0-preview.18 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.rendering.hybrid@0.2.0-preview.18)
    com.unity.test-framework@1.1.5 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.test-framework@1.1.5)
    com.unity.timeline@1.2.3 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.timeline@1.2.3)
    com.unity.xr.legacyinputhelpers@1.3.7 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.xr.legacyinputhelpers@1.3.7)
    com.unity.test-framework.performance@1.3.0-preview (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.test-framework.performance@1.3.0-preview)
    com.unity.properties@0.10.3-preview (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.properties@0.10.3-preview)
    com.unity.serialization@0.6.3-preview (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.serialization@0.6.3-preview)
    com.unity.platforms@0.1.6-preview (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.platforms@0.1.6-preview)
    nuget.mono-cecil@0.1.6-preview (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\nuget.mono-cecil@0.1.6-preview)
    com.unity.scriptablebuildpipeline@1.6.3-preview (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.scriptablebuildpipeline@1.6.3-preview)
    com.unity.searcher@4.0.7-preview (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.searcher@4.0.7-preview)
    com.unity.ext.nunit@1.0.0 (location: D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.ext.nunit@1.0.0)
    Built-in packages:
    com.unity.2d.sprite@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.2d.sprite)
    com.unity.2d.tilemap@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.2d.tilemap)
    com.unity.ugui@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.ugui)
    com.unity.modules.ai@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.ai)
    com.unity.modules.androidjni@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.androidjni)
    com.unity.modules.animation@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.animation)
    com.unity.modules.assetbundle@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.assetbundle)
    com.unity.modules.audio@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.audio)
    com.unity.modules.cloth@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.cloth)
    com.unity.modules.director@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.director)
    com.unity.modules.imageconversion@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.imageconversion)
    com.unity.modules.imgui@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.imgui)
    com.unity.modules.jsonserialize@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.jsonserialize)
    com.unity.modules.particlesystem@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.particlesystem)
    com.unity.modules.physics@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.physics)
    com.unity.modules.physics2d@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.physics2d)
    com.unity.modules.screencapture@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.screencapture)
    com.unity.modules.terrain@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.terrain)
    com.unity.modules.terrainphysics@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.terrainphysics)
    com.unity.modules.tilemap@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.tilemap)
    com.unity.modules.ui@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.ui)
    com.unity.modules.uielements@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.uielements)
    com.unity.modules.umbra@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.umbra)
    com.unity.modules.unityanalytics@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unityanalytics)
    com.unity.modules.unitywebrequest@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequest)
    com.unity.modules.unitywebrequestassetbundle@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestassetbundle)
    com.unity.modules.unitywebrequestaudio@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestaudio)
    com.unity.modules.unitywebrequesttexture@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequesttexture)
    com.unity.modules.unitywebrequestwww@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.unitywebrequestwww)
    com.unity.modules.vehicles@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.vehicles)
    com.unity.modules.video@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.video)
    com.unity.modules.vr@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.vr)
    com.unity.modules.wind@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.wind)
    com.unity.modules.xr@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.xr)
    com.unity.modules.subsystems@1.0.0 (location: D:\UnityHubInstalls\2020.1.0a17\Editor\Data\Resources\PackageManager\BuiltInPackages\com.unity.modules.subsystems)

    [Subsystems] No new subsystems found in resolved package list.
    [Package Manager] Done registering packages in 0.01s seconds
    Refreshing native plugins compatible for Editor in 59.47 ms, found 0 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    IsTimeToCheckForNewEditor: Update time 1577029872 current 1577039432
    Initialize engine version: 2020.1.0a17 (ccc6f9131a63)
    [Subsystems] Discovering subsystems at path D:/UnityHubInstalls/2020.1.0a17/Editor/Data/Resources/UnitySubsystems
    [Subsystems] Discovering subsystems at path D:/Unity/ECS-Octree-master/ECS-Octree-master/ECS-Octree/Assets
    GfxDevice: creating device client; threaded=1
    Direct3D:
    Version: Direct3D 11.0 [level 11.0]
    Renderer: NVIDIA GeForce GTX 750 Ti (ID=0x1380)
    Vendor:
    VRAM: 2007 MB
    Driver: 26.21.14.4141
    [EnlightenBakeManager] m_Clear = false;
    Initialize mono
    Mono path[0] = 'D:/UnityHubInstalls/2020.1.0a17/Editor/Data/Managed'
    Mono path[1] = 'D:/UnityHubInstalls/2020.1.0a17/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
    Mono config path = 'D:/UnityHubInstalls/2020.1.0a17/Editor/Data/MonoBleedingEdge/etc'
    Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56236
    ImportWorker Server TCP listen port: 59483
    Begin MonoManager ReloadAssembly
    Registering precompiled unity dll's ...
    Register platform support module: D:/UnityHubInstalls/2020.1.0a17/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
    Registered in 0.001906 seconds.
    Native extension for WindowsStandalone target not found
    Refreshing native plugins compatible for Editor in 50.59 ms, found 0 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    Mono: successfully reloaded assembly
    - Completed reload, in 2.250 seconds
    Registering precompiled user dll's ...
    Registered in 0.199025 seconds.
    Platform modules already initialized, skipping
    Validating Project structure ... 0.003626 seconds.
    Shader import version has changed; will reimport all shaders...
    Upgrading shader files ...0.003548 seconds.
    Begin MonoManager ReloadAssembly
    Symbol file LoadedFromMemory doesn't match image D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.ext.nunit@1.0.0\net35\unity-custom\nunit.framework.dll
    Native extension for WindowsStandalone target not found
    Refreshing native plugins compatible for Editor in 58.32 ms, found 0 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    Mono: successfully reloaded assembly
    Refresh completed in 0.000004 seconds.
    - Completed reload, in 3.232 seconds
    Platform modules already initialized, skipping
    RefreshInfo: InitialScriptRefreshV2(NoUpdateAssetOptions)
    RefreshProfiler: Total: 5137.981ms
    InvokeBeforeRefreshCallbacks: 0.617ms
    ApplyChangesToAssetFolders: 0.140ms
    WriteModifiedImportersToTextMetaFiles: 0.000ms
    CleanLegacyArtifacts: 0.000ms
    Scan: 121.165ms
    UnregisterDeletedAssets: 0.000ms
    InitializeImportedAssetsSnapshot: 0.264ms
    GetAllGuidsForCategorization: 0.319ms
    CategorizeAssets: 53.458ms
    ImportAndPostprocessOutOfDateAssets: 4933.573ms (4933.577ms without children)
    ImportManagerImport: 0.000ms (0.000ms without children)
    ImportInProcess: 0.000ms
    ImportOutOfProcess: 0.000ms
    UpdateCategorizedAssets: 0.000ms
    RemoteAssetCacheUploadArtifacts: 0.000ms (0.000ms without children)
    RemoteAssetCacheUploadMetadata: 0.000ms
    RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
    RemoteAssetCacheFetchMetadata: 0.000ms
    RemoteAssetCacheMatchMetadataResults: 0.000ms
    RemoteAssetCacheDownloadFile: 0.000ms
    CompileScripts: 0.000ms
    PostProcessAllAssets: 0.001ms
    ReloadImportedAssets: 0.000ms
    InvokeProjectHasChanged: 0.000ms
    UpdateImportedAssetsSnapshot: -0.006ms
    ReloadSourceAssets: 1.400ms
    UnloadImportedAssets: 0.009ms
    Hotreload: 0.195ms
    FixTempGuids: 0.016ms
    Untracked: 26.826ms
    Refresh completed in 0.172248 seconds.
    RefreshInfo: RefreshV2(ForceSynchronousImport)
    RefreshProfiler: Total: 172.217ms
    InvokeBeforeRefreshCallbacks: 1.019ms
    ApplyChangesToAssetFolders: 0.219ms
    WriteModifiedImportersToTextMetaFiles: 0.000ms
    CleanLegacyArtifacts: 0.000ms
    Scan: 110.835ms
    UnregisterDeletedAssets: 0.000ms
    InitializeImportedAssetsSnapshot: 9.705ms
    GetAllGuidsForCategorization: 0.381ms
    CategorizeAssets: 22.922ms
    ImportAndPostprocessOutOfDateAssets: 14.888ms (14.887ms without children)
    ImportManagerImport: 0.000ms (0.000ms without children)
    ImportInProcess: 0.000ms
    ImportOutOfProcess: 0.000ms
    UpdateCategorizedAssets: 0.000ms
    RemoteAssetCacheUploadArtifacts: 0.000ms (0.000ms without children)
    RemoteAssetCacheUploadMetadata: 0.000ms
    RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
    RemoteAssetCacheFetchMetadata: 0.000ms
    RemoteAssetCacheMatchMetadataResults: 0.000ms
    RemoteAssetCacheDownloadFile: 0.000ms
    CompileScripts: 0.000ms
    PostProcessAllAssets: 0.001ms
    ReloadImportedAssets: 0.001ms
    InvokeProjectHasChanged: 0.000ms
    UpdateImportedAssetsSnapshot: -0.002ms
    ReloadSourceAssets: 0.695ms
    UnloadImportedAssets: 0.317ms
    Hotreload: 0.053ms
    FixTempGuids: 0.010ms
    Untracked: 11.174ms
    Refresh completed in 0.126152 seconds.
    RefreshInfo: RefreshV2(ForceSynchronousImport)
    RefreshProfiler: Total: 126.125ms
    InvokeBeforeRefreshCallbacks: 0.747ms
    ApplyChangesToAssetFolders: 0.123ms
    WriteModifiedImportersToTextMetaFiles: 0.000ms
    CleanLegacyArtifacts: 0.000ms
    Scan: 108.511ms
    UnregisterDeletedAssets: 0.000ms
    InitializeImportedAssetsSnapshot: 7.309ms
    GetAllGuidsForCategorization: 0.000ms
    CategorizeAssets: 0.000ms
    ImportAndPostprocessOutOfDateAssets: 0.000ms (0.001ms without children)
    ImportManagerImport: 0.000ms (0.000ms without children)
    ImportInProcess: 0.000ms
    ImportOutOfProcess: 0.000ms
    UpdateCategorizedAssets: 0.000ms
    RemoteAssetCacheUploadArtifacts: 0.000ms (0.000ms without children)
    RemoteAssetCacheUploadMetadata: 0.000ms
    RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
    RemoteAssetCacheFetchMetadata: 0.000ms
    RemoteAssetCacheMatchMetadataResults: 0.000ms
    RemoteAssetCacheDownloadFile: 0.000ms
    CompileScripts: 0.000ms
    PostProcessAllAssets: 0.000ms
    ReloadImportedAssets: 0.000ms
    InvokeProjectHasChanged: 0.000ms
    UpdateImportedAssetsSnapshot: -0.001ms
    ReloadSourceAssets: 0.000ms
    UnloadImportedAssets: 0.000ms
    Hotreload: 0.040ms
    FixTempGuids: 0.011ms
    Untracked: 9.384ms
    Refresh completed in 0.176667 seconds.
    RefreshInfo: RefreshV2(NoUpdateAssetOptions)
    RefreshProfiler: Total: 176.640ms
    InvokeBeforeRefreshCallbacks: 0.586ms
    ApplyChangesToAssetFolders: 0.154ms
    WriteModifiedImportersToTextMetaFiles: 0.000ms
    CleanLegacyArtifacts: 0.000ms
    Scan: 116.326ms
    UnregisterDeletedAssets: 0.000ms
    InitializeImportedAssetsSnapshot: 7.748ms
    GetAllGuidsForCategorization: 0.397ms
    CategorizeAssets: 24.328ms
    ImportAndPostprocessOutOfDateAssets: 15.644ms (15.644ms without children)
    ImportManagerImport: 0.000ms (0.000ms without children)
    ImportInProcess: 0.000ms
    ImportOutOfProcess: 0.000ms
    UpdateCategorizedAssets: 0.000ms
    RemoteAssetCacheUploadArtifacts: 0.000ms (0.000ms without children)
    RemoteAssetCacheUploadMetadata: 0.000ms
    RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
    RemoteAssetCacheFetchMetadata: 0.000ms
    RemoteAssetCacheMatchMetadataResults: 0.000ms
    RemoteAssetCacheDownloadFile: 0.000ms
    CompileScripts: 0.000ms
    PostProcessAllAssets: 0.001ms
    ReloadImportedAssets: 0.000ms
    InvokeProjectHasChanged: 0.000ms
    UpdateImportedAssetsSnapshot: -0.001ms
    ReloadSourceAssets: 1.617ms
    UnloadImportedAssets: 0.556ms
    Hotreload: 0.067ms
    FixTempGuids: 0.010ms
    Untracked: 9.206ms
    Refresh completed in 0.180585 seconds.
    RefreshInfo: RefreshV2(NoUpdateAssetOptions)
    RefreshProfiler: Total: 180.551ms
    InvokeBeforeRefreshCallbacks: 0.655ms
    ApplyChangesToAssetFolders: 0.181ms
    WriteModifiedImportersToTextMetaFiles: 0.000ms
    CleanLegacyArtifacts: 0.000ms
    Scan: 118.966ms
    UnregisterDeletedAssets: 0.000ms
    InitializeImportedAssetsSnapshot: 7.440ms
    GetAllGuidsForCategorization: 0.366ms
    CategorizeAssets: 26.177ms
    ImportAndPostprocessOutOfDateAssets: 14.508ms (14.508ms without children)
    ImportManagerImport: 0.000ms (0.000ms without children)
    ImportInProcess: 0.000ms
    ImportOutOfProcess: 0.000ms
    UpdateCategorizedAssets: 0.000ms
    RemoteAssetCacheUploadArtifacts: 0.000ms (0.000ms without children)
    RemoteAssetCacheUploadMetadata: 0.000ms
    RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
    RemoteAssetCacheFetchMetadata: 0.000ms
    RemoteAssetCacheMatchMetadataResults: 0.000ms
    RemoteAssetCacheDownloadFile: 0.000ms
    CompileScripts: 0.000ms
    PostProcessAllAssets: 0.001ms
    ReloadImportedAssets: 0.000ms
    InvokeProjectHasChanged: 0.000ms
    UpdateImportedAssetsSnapshot: -0.002ms
    ReloadSourceAssets: 1.601ms
    UnloadImportedAssets: 0.324ms
    Hotreload: 0.030ms
    FixTempGuids: 0.013ms
    Untracked: 10.290ms
    Launched and connected shader compiler UnityShaderCompiler.exe after 0.12 seconds
    Initializing Unity extensions:
    'D:/UnityHubInstalls/2020.1.0a17/Editor/Data/UnityExtensions/Unity/UnityVR/Editor/UnityEditor.VR.dll' GUID: 4ba2329b63d54f0187bcaa12486b1b0f
    Unloading 68 Unused Serialized files (Serialized files now loaded: 0)
    System memory in use before: 79.8 MB.
    System memory in use after: 79.2 MB.

    Unloading 95 unused Assets to reduce memory usage. Loaded Objects now: 2791.
    Total: 6.610000 ms (FindLiveObjects: 0.838800 ms CreateObjectMapping: 0.177400 ms MarkObjects: 4.461300 ms DeleteObjects: 1.131500 ms)

    [MODES] Loading mode Default (0) for mode-current-id-Octree
    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initializing input.

    <RI> Input initialized.

    D3D11 device created for Microsoft Media Foundation video decoding.
    [Project] Loading completed in 24.099 seconds
    Project init time: 1.065 seconds
    Template init time: 0.000 seconds
    Services packages init time: 0.000 seconds
    Package Manager init time: 0.000 seconds
    Asset Database init time: 0.000 seconds
    Global illumination init time: 0.000 seconds
    Assemblies load time: 0.000 seconds
    Unity extensions init time: 0.007 seconds
    Asset Database refresh time: 0.000 seconds
    Scene opening time: 1.074 seconds
    EditorUpdateCheck: Response {"latestversionstring":"2019.3.0f1 (ffacea4b84e7)","latestversion":99999,"latestversionmessage":"A new version of Unity is available to test. Please update to the latest pre-release version at your convenience.\nRelease notes available on the download site.\n\nClick the \"Download new version\" button.","updateurl":"https://unity3d.com/unity/beta","updateinterval":3600} updateurl = https://unity3d.com/unity/beta interval = 3600
    Created GICache directory at C:/Users/chris/AppData/LocalLow/Unity/Caches/GiCache. Took: 0.079s, timestamps: [25.100 - 25.180]
    TrimDiskCacheJob: Current cache size 2574mb
    Refresh completed in 0.142270 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport)
    RefreshProfiler: Total: 139.568ms
    InvokeBeforeRefreshCallbacks: 0.687ms
    ApplyChangesToAssetFolders: 0.145ms
    WriteModifiedImportersToTextMetaFiles: 0.000ms
    CleanLegacyArtifacts: 0.000ms
    Scan: 112.328ms
    UnregisterDeletedAssets: 0.000ms
    InitializeImportedAssetsSnapshot: 15.054ms
    GetAllGuidsForCategorization: 0.000ms
    CategorizeAssets: 0.000ms
    ImportAndPostprocessOutOfDateAssets: 0.000ms (0.001ms without children)
    ImportManagerImport: 0.000ms (0.000ms without children)
    ImportInProcess: 0.000ms
    ImportOutOfProcess: 0.000ms
    UpdateCategorizedAssets: 0.000ms
    RemoteAssetCacheUploadArtifacts: 0.000ms (0.000ms without children)
    RemoteAssetCacheUploadMetadata: 0.000ms
    RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
    RemoteAssetCacheFetchMetadata: 0.000ms
    RemoteAssetCacheMatchMetadataResults: 0.000ms
    RemoteAssetCacheDownloadFile: 0.000ms
    CompileScripts: 0.000ms
    PostProcessAllAssets: 0.000ms
    ReloadImportedAssets: 0.000ms
    InvokeProjectHasChanged: 0.000ms
    UpdateImportedAssetsSnapshot: -0.001ms
    ReloadSourceAssets: 0.000ms
    UnloadImportedAssets: 0.000ms
    Hotreload: 0.188ms
    FixTempGuids: 0.011ms
    Untracked: 11.155ms
    <RI> Initialized touch support.

    <RI> Initialized touch support.

    <RI> Initialized touch support.

    Opening scene 'Assets/Scenes/OOP-Octree Test Scene.unity'
    Unloading 4 Unused Serialized files (Serialized files now loaded: 0)
    Start importing Assets/Scenes/OOP-Octree Test SceneSettings.lighting using Guid(a583ab58986127845bb23714aae1d154) Importer(-1,) -> (target hash: '642368b0688ea1560b0ae17725ade7d2') in 0.022588 seconds
    Refreshing native plugins compatible for Editor in 6.19 ms, found 0 plugins.
    Preloading 0 native plugins for Editor in 0.00 ms.
    RefreshInfo: StopAssetImportingV2(NoUpdateAssetOptions)
    RefreshProfiler: Total: 316.561ms
    InvokeBeforeRefreshCallbacks: 0.519ms
    ApplyChangesToAssetFolders: 0.120ms
    WriteModifiedImportersToTextMetaFiles: 0.000ms
    CleanLegacyArtifacts: 0.000ms
    Scan: 104.654ms
    UnregisterDeletedAssets: 0.000ms
    InitializeImportedAssetsSnapshot: 7.077ms
    GetAllGuidsForCategorization: 0.257ms
    CategorizeAssets: 22.735ms
    ImportAndPostprocessOutOfDateAssets: 88.561ms (21.459ms without children)
    ImportManagerImport: 26.784ms (3.143ms without children)
    ImportInProcess: 23.592ms
    ImportOutOfProcess: 0.000ms
    UpdateCategorizedAssets: 0.048ms
    RemoteAssetCacheUploadArtifacts: 0.000ms (0.000ms without children)
    RemoteAssetCacheUploadMetadata: 0.000ms
    RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
    RemoteAssetCacheFetchMetadata: 0.000ms
    RemoteAssetCacheMatchMetadataResults: 0.000ms
    RemoteAssetCacheDownloadFile: 0.000ms
    CompileScripts: 0.000ms
    PostProcessAllAssets: 33.995ms
    ReloadImportedAssets: 0.002ms
    InvokeProjectHasChanged: 0.000ms
    UpdateImportedAssetsSnapshot: 5.363ms
    ReloadSourceAssets: 1.644ms
    UnloadImportedAssets: 0.411ms
    Hotreload: 79.452ms
    FixTempGuids: 0.010ms
    Untracked: 11.121ms
    Loaded scene 'Assets/Scenes/OOP-Octree Test Scene.unity'
    Deserialize: 3.963 ms
    Integration: 741.695 ms
    Integration of assets: 0.004 ms
    Thread Wait Time: 15.694 ms
    Total Operation Time: 761.356 ms
    System memory in use before: 140.6 MB.
    System memory in use after: 122.8 MB.

    Unloading 73 unused Assets to reduce memory usage. Loaded Objects now: 3741.
    Total: 31.154500 ms (FindLiveObjects: 1.057100 ms CreateObjectMapping: 0.197800 ms MarkObjects: 19.061700 ms DeleteObjects: 10.836100 ms)

    [00:00:00] Enlighten: Precompute started.
    Launched and connected shader compiler UnityShaderCompiler.exe after 0.11 seconds
    Launched and connected shader compiler UnityShaderCompiler.exe after 0.14 seconds
    Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds
    [00:00:02] Enlighten: Finished 1 Layout Systems job (0.00s execute, 0.00s integrate, 1.26s wallclock)
    [00:00:02] Enlighten: Finished 1 Tetrahedralize Probes job (0.01s execute, 0.00s integrate, 0.13s wallclock)
    [00:00:02] Enlighten: Precompute took 1.394277 seconds.
    Enlighten scene contents: 0 geometries. 0 instances. 0 systems. 0 probe groups. 0 cube maps. Scene is up-to-date.
    [00:00:02] Enlighten: Bake started.
    Setting up 4 worker threads for Enlighten.
    Thread -> id: 48d0 -> priority: 1
    Thread -> id: 86f8 -> priority: 1
    Thread -> id: 953c -> priority: 1
    Thread -> id: ccb4 -> priority: 1
    [00:00:02] Enlighten: Finished 1 Create Input Lighting job (0.00s execute, 0.00s integrate, 0.05s wallclock)
    Launched and connected shader compiler UnityShaderCompiler.exe after 0.29 seconds
    [Optix] Number of Devices = 1
    [Optix] context is using local device 0: GeForce GTX 750 Ti - 2048MB VRAM (available: 1498MB)
    [Optix] removing context.
    [Radeon Pro] Checking for device support...
    [Radeon Pro] Found 1 devices
    [Radeon Pro] No compatible device found.
    [PathTracer] building lightmap data asset.
    [PathTracer] Total bake time: 0.021750, raw bake time: 0.000000
    gi::BakeBackendSwitch: Clear() active clients.
    [EnlightenBakeManager] m_Clear = false;
    [PathTracer] building lightmap data asset.
    gi::BakeBackendSwitch: switching bake backend from 3 to 1.
    [00:00:03] Enlighten: Finished 1 Create Input Lighting job (0.00s execute, 0.00s integrate, 0.06s wallclock)
    [00:00:18] Enlighten: Finished 2 Bake Runtime jobs (15.00s execute, 0.00s integrate, 15.27s wallclock)
    [00:00:18] Enlighten: Bake took 16.379852 seconds.
    Refresh completed in 0.186137 seconds.
    RefreshInfo: RefreshV2(AllowForceSynchronousImport)
    RefreshProfiler: Total: 184.126ms
    InvokeBeforeRefreshCallbacks: 0.771ms
    ApplyChangesToAssetFolders: 0.150ms
    WriteModifiedImportersToTextMetaFiles: 0.000ms
    CleanLegacyArtifacts: 0.000ms
    Scan: 161.077ms
    UnregisterDeletedAssets: 0.000ms
    InitializeImportedAssetsSnapshot: 9.165ms
    GetAllGuidsForCategorization: 0.000ms
    CategorizeAssets: 0.000ms
    ImportAndPostprocessOutOfDateAssets: 0.000ms (0.002ms without children)
    ImportManagerImport: 0.000ms (0.000ms without children)
    ImportInProcess: 0.000ms
    ImportOutOfProcess: 0.000ms
    UpdateCategorizedAssets: 0.000ms
    RemoteAssetCacheUploadArtifacts: 0.000ms (0.000ms without children)
    RemoteAssetCacheUploadMetadata: 0.000ms
    RemoteAssetCacheGetArtifact: 0.000ms (0.000ms without children)
    RemoteAssetCacheFetchMetadata: 0.000ms
    RemoteAssetCacheMatchMetadataResults: 0.000ms
    RemoteAssetCacheDownloadFile: 0.000ms
    CompileScripts: 0.000ms
    PostProcessAllAssets: 0.000ms
    ReloadImportedAssets: 0.000ms
    InvokeProjectHasChanged: 0.000ms
    UpdateImportedAssetsSnapshot: -0.002ms
    ReloadSourceAssets: 0.000ms
    UnloadImportedAssets: 0.000ms
    Hotreload: 0.971ms
    FixTempGuids: 0.015ms
    Untracked: 11.977ms
    [PathTracer] building lightmap data asset.
    [00:00:26] Enlighten: Reflection Probes started.
    [00:00:26] Enlighten: Finished 1 Bake Ambient Probe job (0.00s execute, 0.00s integrate, 0.05s wallclock)
    [00:00:26] Enlighten: Finished 1 Reflection System job (0.00s execute, 0.00s integrate, 0.08s wallclock)
    [00:00:26] Enlighten: LightingDataAsset started.
    > Collecting Enlighten data
    Opening scene 'Assets/Scenes/ECS-Octree Test Scene.unity'
    Unloading 3 Unused Serialized files (Serialized files now loaded: 0)
    [00:00:00] Enlighten: Reflection Probes took 8.767281 seconds. Cancelled, so not done yet.
    [00:00:00] Enlighten: LightingDataAsset took 8.636620 seconds. Cancelled, so not done yet.
    Loaded scene 'Assets/Scenes/ECS-Octree Test Scene.unity'
    Deserialize: 8.535 ms
    Integration: 57.354 ms
    Integration of assets: 0.004 ms
    Thread Wait Time: 11.421 ms
    Total Operation Time: 77.313 ms
    System memory in use before: 158.2 MB.
    System memory in use after: 158.5 MB.

    Unloading 8 unused Assets to reduce memory usage. Loaded Objects now: 3894.
    Total: 20.317300 ms (FindLiveObjects: 0.951100 ms CreateObjectMapping: 0.142700 ms MarkObjects: 19.183700 ms DeleteObjects: 0.038700 ms)

    Stacktrace:

    at <unknown> <0xffffffff>
    at (wrapper managed-to-native) UnityEditor.Handles.Internal_DrawCameraWithGrid (UnityEngine.Camera,UnityEditor.DrawCameraMode,UnityEditor.DrawGridParameters&,bool) [0x0000a] in <50c2886429a849e8b640d0aca52729fc>:0
    at UnityEditor.Handles.DrawCameraImpl (UnityEngine.Rect,UnityEngine.Camera,UnityEditor.DrawCameraMode,bool,UnityEditor.DrawGridParameters,bool,bool) [0x000cb] in <50c2886429a849e8b640d0aca52729fc>:0
    at UnityEditor.Handles.DrawCameraStep1 (UnityEngine.Rect,UnityEngine.Camera,UnityEditor.DrawCameraMode,UnityEditor.DrawGridParameters,bool) [0x00009] in <50c2886429a849e8b640d0aca52729fc>:0
    at UnityEditor.SceneView.DoDrawCamera (UnityEngine.Rect,UnityEngine.Rect,bool&) [0x00189] in <50c2886429a849e8b640d0aca52729fc>:0
    at UnityEditor.SceneView.OnGUI () [0x001c5] in <50c2886429a849e8b640d0aca52729fc>:0
    at (wrapper runtime-invoke) object.runtime_invoke_void__this__ (object,intptr,intptr,intptr) [0x0004f] in <437ba245d8404784b9fbab9b439ac908>:0
    at <unknown> <0xffffffff>
    at (wrapper managed-to-native) System.Reflection.MonoMethod.InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&) [0x00016] in <437ba245d8404784b9fbab9b439ac908>:0
    at System.Reflection.MonoMethod.Invoke (object,System.Reflection.BindingFlags,System.Reflection.Binder,object[],System.Globalization.CultureInfo) [0x00038] in <437ba245d8404784b9fbab9b439ac908>:0
    at System.Reflection.MethodBase.Invoke (object,object[]) [0x00006] in <437ba245d8404784b9fbab9b439ac908>:0
    at UnityEditor.HostView.Invoke (string,object) [0x00012] in <50c2886429a849e8b640d0aca52729fc>:0
    at UnityEditor.HostView.Invoke (string) [0x00009] in <50c2886429a849e8b640d0aca52729fc>:0
    at UnityEditor.HostView.InvokeOnGUI (UnityEngine.Rect,UnityEngine.Rect) [0x0007a] in <50c2886429a849e8b640d0aca52729fc>:0
    at UnityEditor.DockArea.DrawView (UnityEngine.Rect,UnityEngine.Rect) [0x00004] in <50c2886429a849e8b640d0aca52729fc>:0
    at UnityEditor.DockArea.OldOnGUI () [0x0019d] in <50c2886429a849e8b640d0aca52729fc>:0
    at UnityEngine.UIElements.IMGUIContainer.DoOnGUI (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool,UnityEngine.Rect,bool) [0x001ce] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.IMGUIContainer.HandleIMGUIEvent (UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,bool) [0x00076] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.IMGUIContainer.DoIMGUIRepaint () [0x00054] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.UIR.RenderChainCommand.ExecuteNonDrawMesh (UnityEngine.UIElements.UIR.DrawParams,bool,single,System.Exception&) [0x000b2] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.UIR.UIRenderDevice.EvaluateChain (UnityEngine.UIElements.UIR.RenderChainCommand,UnityEngine.Rect,UnityEngine.Matrix4x4,UnityEngine.Texture,UnityEngine.Texture,UnityEngine.Texture,single,Unity.Collections.NativeArray`1<UnityEngine.UIElements.UIR.Transform3x4>,Unity.Collections.NativeArray`1<UnityEngine.Vector4>,UnityEngine.MaterialPropertyBlock,System.Exception&) [0x0055e] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.UIR.RenderChain.Render () [0x00122] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.UIRRepaintUpdater.Update () [0x0006c] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.VisualTreeUpdater.UpdateVisualTreePhase (UnityEngine.UIElements.VisualTreeUpdatePhase) [0x0001f] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.Panel.UpdateForRepaint () [0x0003c] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.Panel.Repaint (UnityEngine.Event) [0x00061] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.UIElementsUtility.DoDispatch (UnityEngine.UIElements.BaseVisualElementPanel) [0x00029] in <7bb8304a61014070b7f28db050747199>:0
    at UnityEngine.UIElements.UIElementsUtility.UnityEngine.UIElements.IUIElementsUtility.ProcessEvent (int,intptr,bool&) [0x0003f] in <7bb8304a61014070b7f28db050747199>:0
    at UnityECrash!!!
    SymInit: Symbol-SearchPath: '.', symOptions: 532, UserName: 'chris'
    OS-Version: 10.0.0
    D:\UnityHubInstalls\2020.1.0a17\Editor\Unity.exe:Unity.exe (00007FF666ED0000), size: 140320768 (result: 0), SymType: '-nosymbols-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\Unity.exe', fileVersion: 2020.1.0.50937
    C:\WINDOWS\SYSTEM32\ntdll.dll:ntdll.dll (00007FFB108C0000), size: 2031616 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\ntdll.dll', fileVersion: 10.0.18362.418
    C:\WINDOWS\System32\KERNEL32.DLL:KERNEL32.DLL (00007FFB0F7E0000), size: 729088 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\KERNEL32.DLL', fileVersion: 10.0.18362.329
    C:\WINDOWS\System32\KERNELBASE.dll:KERNELBASE.dll (00007FFB0D8B0000), size: 2764800 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\KERNELBASE.dll', fileVersion: 10.0.18362.535
    C:\WINDOWS\SYSTEM32\apphelp.dll:apphelp.dll (00007FFB0A750000), size: 585728 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\apphelp.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\System32\CRYPT32.dll:CRYPT32.dll (00007FFB0E4E0000), size: 1347584 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\CRYPT32.dll', fileVersion: 10.0.18362.476
    C:\WINDOWS\System32\ucrtbase.dll:ucrtbase.dll (00007FFB0E310000), size: 1024000 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\ucrtbase.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\System32\MSASN1.dll:MSASN1.dll (00007FFB0D7A0000), size: 73728 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\MSASN1.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\System32\USER32.dll:USER32.dll (00007FFB0EC90000), size: 1654784 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\USER32.dll', fileVersion: 10.0.18362.535
    C:\WINDOWS\System32\win32u.dll:win32u.dll (00007FFB0E630000), size: 135168 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\win32u.dll', fileVersion: 10.0.18362.535
    C:\WINDOWS\System32\GDI32.dll:GDI32.dll (00007FFB10850000), size: 155648 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\GDI32.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\System32\gdi32full.dll:gdi32full.dll (00007FFB0E780000), size: 1654784 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\gdi32full.dll', fileVersion: 10.0.18362.535
    C:\WINDOWS\System32\msvcp_win.dll:msvcp_win.dll (00007FFB0E6E0000), size: 647168 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\msvcp_win.dll', fileVersion: 10.0.18362.387
    D:\UnityHubInstalls\2020.1.0a17\Editor\optix.6.0.0.dll:eek:ptix.6.0.0.dll (00007FFAE9780000), size: 208896 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\optix.6.0.0.dll', fileVersion: 6.0.0.0
    D:\UnityHubInstalls\2020.1.0a17\Editor\libfbxsdk.dll:libfbxsdk.dll (00007FFAAE9B0000), size: 8511488 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\libfbxsdk.dll', fileVersion: 2018.1.1.0
    C:\WINDOWS\System32\ADVAPI32.dll:ADVAPI32.dll (00007FFB0EE30000), size: 667648 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\ADVAPI32.dll', fileVersion: 10.0.18362.329
    C:\WINDOWS\System32\msvcrt.dll:msvcrt.dll (00007FFB0F020000), size: 647168 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\msvcrt.dll', fileVersion: 7.0.18362.1
    C:\WINDOWS\System32\sechost.dll:sechost.dll (00007FFB0EB80000), size: 618496 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\sechost.dll', fileVersion: 10.0.18362.267
    D:\UnityHubInstalls\2020.1.0a17\Editor\OpenImageDenoise.dll:OpenImageDenoise.dll (00007FFA93090000), size: 43806720 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\OpenImageDenoise.dll'
    C:\WINDOWS\System32\RPCRT4.dll:RPCRT4.dll (00007FFB0FD70000), size: 1179648 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\RPCRT4.dll', fileVersion: 10.0.18362.476
    C:\WINDOWS\System32\SHELL32.dll:SHELL32.dll (00007FFB0F0C0000), size: 7229440 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\SHELL32.dll', fileVersion: 10.0.18362.535
    C:\WINDOWS\System32\cfgmgr32.dll:cfgmgr32.dll (00007FFB0E920000), size: 303104 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\cfgmgr32.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\System32\shcore.dll:shcore.dll (00007FFB0EEF0000), size: 692224 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\shcore.dll', fileVersion: 10.0.18362.1
    D:\UnityHubInstalls\2020.1.0a17\Editor\OpenRL.dll:OpenRL.dll (0000000180000000), size: 12779520 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\OpenRL.dll', fileVersion: 1.5.100.0
    D:\UnityHubInstalls\2020.1.0a17\Editor\RadeonImageFilters64.dll:RadeonImageFilters64.dll (00007FFAC9220000), size: 1310720 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\RadeonImageFilters64.dll', fileVersion: 1.4.0.0
    C:\WINDOWS\System32\combase.dll:combase.dll (00007FFB0FF60000), size: 3366912 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\combase.dll', fileVersion: 10.0.18362.449
    C:\WINDOWS\System32\bcryptPrimitives.dll:bcryptPrimitives.dll (00007FFB0E660000), size: 524288 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\bcryptPrimitives.dll', fileVersion: 10.0.18362.295
    D:\UnityHubInstalls\2020.1.0a17\Editor\umbraoptimizer64.dll:umbraoptimizer64.dll (00007FFABD450000), size: 1306624 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\umbraoptimizer64.dll'
    C:\WINDOWS\System32\windows.storage.dll:windows.storage.dll (00007FFB0DB60000), size: 7860224 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\windows.storage.dll', fileVersion: 10.0.18362.535
    C:\WINDOWS\System32\WS2_32.dll:WS2_32.dll (00007FFB0EC20000), size: 454656 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\WS2_32.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\System32\SETUPAPI.dll:SETUPAPI.dll (00007FFB0F8A0000), size: 4653056 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\SETUPAPI.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\System32\WLDAP32.dll:WLDAP32.dll (00007FFB0FE90000), size: 425984 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\WLDAP32.dll', fileVersion: 10.0.18362.449
    C:\WINDOWS\System32\profapi.dll:profapi.dll (00007FFB0D810000), size: 126976 (result: 0), SymType: '-nosymbols-', PDB: 'C:\WINDOWS\System32\profapi.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\System32\Normaliz.dll:Normaliz.dll (00007FFB0EEE0000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\Normaliz.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\System32\bcrypt.dll:bcrypt.dll (00007FFB0E2E0000), size: 155648 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\bcrypt.dll', fileVersion: 10.0.18362.267
    C:\WINDOWS\System32\powrprof.dll:powrprof.dll (00007FFB0D7C0000), size: 303104 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\powrprof.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\System32\UMPDC.dll:UMPDC.dll (00007FFB0D790000), size: 65536 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\UMPDC.dll'
    C:\WINDOWS\System32\shlwapi.dll:shlwapi.dll (00007FFB0FD10000), size: 335872 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\shlwapi.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\HID.DLL:HID.DLL (00007FFB0C0A0000), size: 57344 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\HID.DLL', fileVersion: 10.0.18362.1
    C:\WINDOWS\System32\kernel.appcore.dll:kernel.appcore.dll (00007FFB0D830000), size: 69632 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\kernel.appcore.dll', fileVersion: 10.0.18362.1
    D:\UnityHubInstalls\2020.1.0a17\Editor\libcef.dll:libcef.dll (00007FFA8FEC0000), size: 52219904 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\libcef.dll', fileVersion: 3.2062.1930.0
    C:\WINDOWS\System32\cryptsp.dll:cryptsp.dll (00007FFB0E4C0000), size: 94208 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\cryptsp.dll', fileVersion: 10.0.18362.1
    D:\UnityHubInstalls\2020.1.0a17\Editor\ispc_texcomp.dll:ispc_texcomp.dll (00007FFABB9B0000), size: 1609728 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\ispc_texcomp.dll'
    C:\WINDOWS\System32\ole32.dll:eek:le32.dll (00007FFB10590000), size: 1400832 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\ole32.dll', fileVersion: 10.0.18362.113
    D:\UnityHubInstalls\2020.1.0a17\Editor\WinPixEventRuntime.dll:WinPixEventRuntime.dll (00007FFB05B70000), size: 45056 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\WinPixEventRuntime.dll', fileVersion: 1.0.1812.6001
    C:\WINDOWS\System32\IMM32.dll:IMM32.dll (00007FFB0F7B0000), size: 188416 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\IMM32.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\System32\PSAPI.DLL:pSAPI.DLL (00007FFB107C0000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\PSAPI.DLL', fileVersion: 10.0.18362.1
    C:\WINDOWS\System32\OLEAUT32.dll:OLEAUT32.dll (00007FFB106F0000), size: 802816 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\OLEAUT32.dll', fileVersion: 10.0.18362.535
    C:\WINDOWS\System32\COMDLG32.dll:COMDLG32.dll (00007FFB0E970000), size: 851968 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\COMDLG32.dll', fileVersion: 10.0.18362.418
    C:\WINDOWS\System32\WINTRUST.dll:WINTRUST.dll (00007FFB0D850000), size: 376832 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\WINTRUST.dll', fileVersion: 10.0.18362.387
    D:\UnityHubInstalls\2020.1.0a17\Editor\tbb.dll:tbb.dll (00007FFAE3CD0000), size: 413696 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\tbb.dll', fileVersion: 2017.0.2016.1004
    C:\WINDOWS\SYSTEM32\OPENGL32.dll:OPENGL32.dll (00007FFABB850000), size: 1400832 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\OPENGL32.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\SYSTEM32\D3DCOMPILER_47.dll:D3DCOMPILER_47.dll (00007FFB09B90000), size: 4530176 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\D3DCOMPILER_47.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\VCRUNTIME140.dll:VCRUNTIME140.dll (00007FFB02D50000), size: 90112 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\VCRUNTIME140.dll', fileVersion: 14.11.25325.0
    C:\WINDOWS\SYSTEM32\MSVCP140.dll:MSVCP140.dll (00007FFB02D70000), size: 651264 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MSVCP140.dll', fileVersion: 14.11.25325.0
    C:\WINDOWS\SYSTEM32\VERSION.dll:VERSION.dll (00007FFB08480000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\VERSION.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\MSVCR100.dll:MSVCR100.dll (0000000058A30000), size: 860160 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MSVCR100.dll', fileVersion: 10.0.40219.325
    C:\WINDOWS\SYSTEM32\MSVCP100.dll:MSVCP100.dll (0000000056580000), size: 622592 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MSVCP100.dll', fileVersion: 10.0.40219.325
    D:\UnityHubInstalls\2020.1.0a17\Editor\embree.dll:embree.dll (00007FFAAD9C0000), size: 16711680 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\embree.dll', fileVersion: 2.14.0.0
    C:\WINDOWS\SYSTEM32\GLU32.dll:GLU32.dll (00007FFAE9750000), size: 180224 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\GLU32.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\SYSTEM32\WINHTTP.dll:WINHTTP.dll (00007FFB074C0000), size: 983040 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WINHTTP.dll', fileVersion: 10.0.18362.449
    C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL:IPHLPAPI.DLL (00007FFB0CCD0000), size: 237568 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\WINMM.dll:WINMM.dll (00007FFB02250000), size: 147456 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WINMM.dll', fileVersion: 10.0.18362.1
    D:\UnityHubInstalls\2020.1.0a17\Editor\SketchUpAPI.dll:SketchUpAPI.dll (00007FFAAD130000), size: 8978432 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\SketchUpAPI.dll', fileVersion: 19.0.753.0
    C:\WINDOWS\SYSTEM32\WINSPOOL.DRV:WINSPOOL.DRV (00007FFB016D0000), size: 561152 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WINSPOOL.DRV', fileVersion: 10.0.18362.267
    C:\WINDOWS\SYSTEM32\WSOCK32.dll:WSOCK32.dll (00007FFAFEE00000), size: 36864 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WSOCK32.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\CRYPTBASE.DLL:CRYPTBASE.DLL (00007FFB0D130000), size: 49152 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\CRYPTBASE.DLL', fileVersion: 10.0.18362.1
    C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.18362.535_none_e6c3b34713100821\COMCTL32.dll:COMCTL32.dll (00007FFB029D0000), size: 2641920 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.18362.535_none_e6c3b34713100821\COMCTL32.dll', fileVersion: 6.10.18362.535
    C:\WINDOWS\SYSTEM32\USERENV.dll:USERENV.dll (00007FFB0D680000), size: 151552 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\USERENV.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\SYSTEM32\WTSAPI32.dll:WTSAPI32.dll (00007FFB08C90000), size: 77824 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WTSAPI32.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL:dhcpcsvc.DLL (00007FFB087B0000), size: 114688 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL', fileVersion: 10.0.18362.267
    C:\WINDOWS\SYSTEM32\urlmon.dll:urlmon.dll (00007FFB04650000), size: 1925120 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\urlmon.dll', fileVersion: 11.0.18362.449
    C:\WINDOWS\System32\NSI.dll:NSI.dll (00007FFB10580000), size: 32768 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\NSI.dll', fileVersion: 10.0.18362.449
    C:\WINDOWS\SYSTEM32\Secur32.dll:Secur32.dll (00007FFAFEEE0000), size: 49152 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\Secur32.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\OLEACC.dll:OLEACC.dll (00007FFB02480000), size: 413696 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\OLEACC.dll', fileVersion: 7.2.18362.1
    C:\WINDOWS\SYSTEM32\MSVCR120.dll:MSVCR120.dll (00007FFB00400000), size: 978944 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MSVCR120.dll', fileVersion: 12.0.40649.5
    C:\WINDOWS\SYSTEM32\USP10.dll:USP10.dll (00007FFAEA6D0000), size: 102400 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\USP10.dll', fileVersion: 10.0.18362.476
    C:\WINDOWS\SYSTEM32\MSVCP120.dll:MSVCP120.dll (00007FFAFF080000), size: 679936 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MSVCP120.dll', fileVersion: 12.0.40649.5
    C:\WINDOWS\SYSTEM32\winmmbase.dll:winmmbase.dll (00007FFB016A0000), size: 184320 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\winmmbase.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\PROPSYS.dll:pROPSYS.dll (00007FFB0B230000), size: 978944 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\PROPSYS.dll', fileVersion: 7.0.18362.267
    D:\UnityHubInstalls\2020.1.0a17\Editor\SketchUpCommonPreferences.dll:SketchUpCommonPreferences.dll (00007FFAE3C50000), size: 483328 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\SketchUpCommonPreferences.dll', fileVersion: 19.0.753.20342
    C:\WINDOWS\SYSTEM32\iertutil.dll:iertutil.dll (00007FFAFE2B0000), size: 2777088 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\iertutil.dll', fileVersion: 11.0.18362.449
    C:\WINDOWS\SYSTEM32\dxcore.dll:dxcore.dll (00007FFB0C3A0000), size: 131072 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\dxcore.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\SSPICLI.DLL:SSPICLI.DLL (00007FFB0D6B0000), size: 192512 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\SSPICLI.DLL', fileVersion: 10.0.18362.1
    D:\UnityHubInstalls\2020.1.0a17\Editor\FreeImage.dll:FreeImage.dll (000001FA6AD90000), size: 6414336 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\FreeImage.dll', fileVersion: 3.18.0.0
    D:\UnityHubInstalls\2020.1.0a17\Editor\OpenRL_pthread.dll:OpenRL_pthread.dll (000001FA6B3B0000), size: 61440 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\OpenRL_pthread.dll', fileVersion: 2.9.0.0
    C:\WINDOWS\SYSTEM32\MSWSOCK.DLL:MSWSOCK.DLL (00007FFB0CFB0000), size: 421888 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\MSWSOCK.DLL', fileVersion: 10.0.18362.1
    C:\WINDOWS\system32\uxtheme.dll:uxtheme.dll (00007FFB0A840000), size: 626688 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\uxtheme.dll', fileVersion: 10.0.18362.449
    C:\Program Files\Nahimic\Nahimic VR\Foundation\x64\NahimicVRDevProps.dll:NahimicVRDevProps.dll (00007FFADF960000), size: 241664 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files\Nahimic\Nahimic VR\Foundation\x64\NahimicVRDevProps.dll'
    C:\WINDOWS\System32\clbcatq.dll:clbcatq.dll (00007FFB102A0000), size: 663552 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\clbcatq.dll', fileVersion: 2001.12.10941.16384
    C:\WINDOWS\System32\MMDevApi.dll:MMDevApi.dll (00007FFB08890000), size: 466944 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\MMDevApi.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\System32\DEVOBJ.dll:DEVOBJ.dll (00007FFB0D590000), size: 172032 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\DEVOBJ.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\SYSTEM32\AUDIOSES.DLL:AUDIOSES.DLL (00007FFB08960000), size: 1429504 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\AUDIOSES.DLL', fileVersion: 10.0.18362.449
    C:\WINDOWS\SYSTEM32\wintypes.dll:wintypes.dll (00007FFB08CF0000), size: 1388544 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\wintypes.dll', fileVersion: 10.0.18362.449
    C:\WINDOWS\system32\wbem\wbemprox.dll:wbemprox.dll (00007FFB06D70000), size: 69632 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\wbem\wbemprox.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\wbemcomn.dll:wbemcomn.dll (00007FFB06670000), size: 540672 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\wbemcomn.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\system32\wbem\wbemsvc.dll:wbemsvc.dll (00007FFB05760000), size: 81920 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\wbem\wbemsvc.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\system32\wbem\fastprox.dll:fastprox.dll (00007FFB057A0000), size: 1052672 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\wbem\fastprox.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\amsi.dll:amsi.dll (00007FFB05540000), size: 86016 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\amsi.dll', fileVersion: 10.0.18362.1
    C:\Program Files (x86)\Norton AntiVirus\Engine\22.19.9.63\symamsi.dll:symamsi.dll (00007FFB05490000), size: 712704 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files (x86)\Norton AntiVirus\Engine\22.19.9.63\symamsi.dll', fileVersion: 15.7.9.16
    C:\WINDOWS\system32\rsaenh.dll:rsaenh.dll (00007FFB0CB30000), size: 208896 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\rsaenh.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\System32\imagehlp.dll:imagehlp.dll (000001FA6D580000), size: 118784 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\imagehlp.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\gpapi.dll:gpapi.dll (00007FFB0C350000), size: 139264 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\gpapi.dll', fileVersion: 10.0.18362.1
    C:\Windows\System32\cryptnet.dll:cryptnet.dll (00007FFB08270000), size: 192512 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\cryptnet.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\WINNSI.DLL:WINNSI.DLL (00007FFB08880000), size: 45056 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\WINNSI.DLL', fileVersion: 10.0.18362.449
    C:\WINDOWS\System32\MSCTF.dll:MSCTF.dll (00007FFB0EA40000), size: 1265664 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\MSCTF.dll', fileVersion: 10.0.18362.535
    C:\WINDOWS\System32\netprofm.dll:netprofm.dll (00007FFB099B0000), size: 253952 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\netprofm.dll', fileVersion: 10.0.18362.267
    C:\WINDOWS\System32\npmproxy.dll:npmproxy.dll (00007FFB06EA0000), size: 65536 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\npmproxy.dll', fileVersion: 10.0.18362.267
    C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL:dhcpcsvc6.DLL (00007FFB08860000), size: 90112 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL', fileVersion: 10.0.18362.267
    C:\WINDOWS\SYSTEM32\DNSAPI.dll:DNSAPI.dll (00007FFB0CD10000), size: 827392 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\DNSAPI.dll', fileVersion: 10.0.18362.267
    C:\WINDOWS\System32\fwpuclnt.dll:fwpuclnt.dll (00007FFB07E10000), size: 487424 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\fwpuclnt.dll', fileVersion: 10.0.18362.207
    C:\Windows\System32\rasadhlp.dll:rasadhlp.dll (00007FFB05D90000), size: 40960 (result: 0), SymType: '-exported-', PDB: 'C:\Windows\System32\rasadhlp.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\ntmarta.dll:ntmarta.dll (00007FFB0C790000), size: 200704 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\ntmarta.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\system32\explorerframe.dll:explorerframe.dll (00007FFAE27F0000), size: 2117632 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\explorerframe.dll', fileVersion: 10.0.18362.418
    C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll:resourcepolicyclient.dll (00007FFB0AD80000), size: 81920 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\resourcepolicyclient.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\d3d11.dll:d3d11.dll (00007FFB0C0B0000), size: 2469888 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\d3d11.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\SYSTEM32\dxgi.dll:dxgi.dll (00007FFB0C430000), size: 962560 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\dxgi.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvldumdx.dll:nvldumdx.dll (00007FFAF92C0000), size: 978944 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvldumdx.dll', fileVersion: 26.21.14.4141
    C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvwgf2umx.dll:nvwgf2umx.dll (00007FFABD720000), size: 40484864 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvwgf2umx.dll', fileVersion: 26.21.14.4141
    D:\UnityHubInstalls\2020.1.0a17\Editor\cudart64_90.dll:cudart64_90.dll (00007FFAE3D60000), size: 397312 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\cudart64_90.dll', fileVersion: 6.14.11.9000
    C:\WINDOWS\SYSTEM32\dbghelp.dll:dbghelp.dll (00007FFB0BEA0000), size: 2048000 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\dbghelp.dll', fileVersion: 10.0.18362.1
    D:\UnityHubInstalls\2020.1.0a17\Editor\tbbmalloc.dll:tbbmalloc.dll (00007FFAC9750000), size: 372736 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\tbbmalloc.dll', fileVersion: 2017.0.2016.1004
    C:\WINDOWS\SYSTEM32\opencl.dll:eek:pencl.dll (00007FFAC8DA0000), size: 450560 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\opencl.dll', fileVersion: 2.2.2.0
    D:\UnityHubInstalls\2020.1.0a17\Editor\radeonrays.dll:radeonrays.dll (00007FFAC8C10000), size: 552960 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\radeonrays.dll'
    D:\UnityHubInstalls\2020.1.0a17\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll:mono-2.0-bdwgc.dll (00007FFA99360000), size: 7778304 (result: 0), SymType: '-exported-', PDB: 'D:\UnityHubInstalls\2020.1.0a17\Editor\Data\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll'
    C:\ProgramData\Microsoft\VisualStudio\Setup\x64\Microsoft.VisualStudio.Setup.Configuration.Native.dll:Microsoft.VisualStudio.Setup.Configuration.Native.dll (00007FFAC85A0000), size: 421888 (result: 0), SymType: '-exported-', PDB: 'C:\ProgramData\Microsoft\VisualStudio\Setup\x64\Microsoft.VisualStudio.Setup.Configuration.Native.dll', fileVersion: 1.18.21.37008
    D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.burst@1.2.0-preview.10\.Runtime\burst-llvm-8.dll:burst-llvm-8.dll (00007FFA8E330000), size: 28893184 (result: 0), SymType: '-exported-', PDB: 'D:\Unity\ECS-Octree-master\ECS-Octree-master\ECS-Octree\Library\PackageCache\com.unity.burst@1.2.0-preview.10\.Runtime\burst-llvm-8.dll'
    C:\WINDOWS\system32\dataexchange.dll:dataexchange.dll (00007FFAE2A00000), size: 237568 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\dataexchange.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\system32\dcomp.dll:dcomp.dll (00007FFB09FF0000), size: 1945600 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\dcomp.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\system32\twinapi.appcore.dll:twinapi.appcore.dll (00007FFB0AB20000), size: 2465792 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\twinapi.appcore.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\system32\RMCLIENT.dll:RMCLIENT.dll (00007FFB0AF80000), size: 167936 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\RMCLIENT.dll', fileVersion: 10.0.18362.267
    C:\WINDOWS\SYSTEM32\xinput1_3.dll:xinput1_3.dll (0000000000400000), size: 122880 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\xinput1_3.dll', fileVersion: 9.18.944.0
    C:\WINDOWS\SYSTEM32\CoreMessaging.dll:CoreMessaging.dll (00007FFB0A540000), size: 868352 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\CoreMessaging.dll', fileVersion: 10.0.18362.1
    C:\WINDOWS\SYSTEM32\dwmapi.dll:dwmapi.dll (00007FFB0AF50000), size: 184320 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\dwmapi.dll', fileVersion: 10.0.18362.267
    C:\WINDOWS\system32\NLAapi.dll:NLAapi.dll (00007FFB08AC0000), size: 114688 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\NLAapi.dll', fileVersion: 10.0.18362.387
    C:\WINDOWS\SYSTEM32\TextInputFramework.dll:TextInputFramework.dll (00007FFAFAAB0000), size: 647168 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\TextInputFramework.dll', fileVersion: 10.0.18362.267
    C:\WINDOWS\SYSTEM32\CoreUIComponents.dll:CoreUIComponents.dll (00007FFAFB5F0000), size: 3317760 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\SYSTEM32\CoreUIComponents.dll', fileVersion: 10.0.18362.207
    C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvoptix.dll:nvoptix.dll (00007FFA869D0000), size: 127229952 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvoptix.dll', fileVersion: 7.1.0.0
    C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvapi64.dll:nvapi64.dll (00007FFA864E0000), size: 5148672 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvapi64.dll', fileVersion: 26.21.14.4141
    C:\WINDOWS\system32\nvcuda.dll:nvcuda.dll (00007FFA85410000), size: 17567744 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\system32\nvcuda.dll', fileVersion: 26.21.14.4141
    C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvrtum64.dll:nvrtum64.dll (00007FFA839B0000), size: 27594752 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvrtum64.dll', fileVersion: 26.21.14.4141
    C:\Program Files\NVIDIA Corporation\NVSMI\nvml.dll:nvml.dll (00007FFAD0320000), size: 3907584 (result: 0), SymType: '-exported-', PDB: 'C:\Program Files\NVIDIA Corporation\NVSMI\nvml.dll', fileVersion: 8.17.14.4141
    C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvopencl64.dll:nvopencl64.dll (00007FFA81D00000), size: 30027776 (result: 0), SymType: '-exported-', PDB: 'C:\WINDOWS\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_eb2e336f678f7f83\nvopencl64.dll', fileVersion: 26.21.14.4141

    ========== OUTPUTTING STACK TRACE ==================


    ========== END OF STACKTRACE ===========

    A crash has been intercepted by the crash handler. For call stack and other details, see the latest crash report generated in:
    * C:/Users/chris/AppData/Local/Temp/Unity/Editor/Crashes
     
  27. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    I would be interested, if anyone else had any issues, with running it.
    I had no issues on my side, with given configuration.

    @christougher I looked into logs. I checked if your packages matched my requirement, which they do.
    As I tried to decipher all logs, as much I could understand them, I can not see any directions, which would lead to issue, or solution.

    Maybe you could try update to Entity 0.3.0, or 0.4.0?
    Other thought maybe, trying run on 2019.3, with Entities 0.4. That means however, downgrading a bit.
    But I have not tested these options yet.

    My apology for inconvenience.

    Let me know, if you decided to try any of options and the results.
     
  28. christougher

    christougher

    Joined:
    Mar 6, 2015
    Posts:
    558
    very strange... tried on different computers (mac and PC) and still get immediate crash when opening ECS scene.... I can however drag it into the hierarchy scene when another scene is loaded and switch to it... however it still has missing scripts and prefabs... most of the prefabs I can find except the boundingbox one, but i'm not sure what scripts go where... Oh, Unity Unity how I love to hate thee...
     
    Antypodish likes this.
  29. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    It is quite strange experience, as you download whole project. So I assume, all scenes should be intact.

    I have even downgraded copy of whole project to 2019.3.0f3, just to check.
    It works, without needed to reinstall any packages.
    No other issues so far.

    So I am puzzled, what is different with your project @christougher.
    Are you sure, you did download whole repository? Try maybe again?
     
  30. christougher

    christougher

    Joined:
    Mar 6, 2015
    Posts:
    558
    Yeah, I'm puzzled, I download the main zip file I've unzipped it in multiple locations, open it with multiple versions of unity on two different computers, two different OS's and I've done this many times with many other repos. I simply find the unzipped, unchanged project with the unity hub and open it with unity 2020 Alpha 15, Alpha 17 as well as 2019 versions. I change nothing and it crashes loading the scene without any errors to clue me in. Maybe this is a unity problem moreso then a problem with your specific project, because this is bizarre
     
    Antypodish likes this.
  31. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    @christougher, I was able to reproduce error.
    It was due to missing files in repo.
    I did some changes to repository. So please try again.

    You should see (hopefully) something similar, when in editor, before run.

    upload_2019-12-23_1-52-10.png
     
    christougher likes this.
  32. christougher

    christougher

    Joined:
    Mar 6, 2015
    Posts:
    558
    Victory! Thx for your time, efforts and smarts!
     
    Antypodish likes this.
  33. mikerz1985

    mikerz1985

    Joined:
    Oct 23, 2014
    Posts:
    79
    This is really interesting! I'm currently in the process of trying to hack it in order to parse a gigantic 3d model in order to implement a highly optimized "Split by loose parts" type of algorithm.

    The OOP unity octree you based your ECS one on can do what I need just fine, but it takes 4 hours to run once where it seems like yours might only take a few seconds based on what I'm seeing.

    It would be amazing if you could get a more generalized version of this up and running eventually. Nice work!

    This is a helpful project for me to learn more about using ECS
     
  34. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    Than for your interest in the project.
    Are you able to provide a bit more details on your use case?
    I.e. Some reproducible sample maybe? Just curious, uowmany depth levels of octree nodes you generated, if you know?

    I am aware, the project is not 100 % ideal, and I even looked recently, if to be able simplify and to improve further.

    Let me know with some more details, so I could potentially look into it, when I got time.

    Did you try other Dots solution in meantime!?
     
  35. axxessdenied

    axxessdenied

    Joined:
    Nov 29, 2016
    Posts:
    33
    Awesome project!
    I'm building a universe simulator with ECS and I'm thinking splitting up the world into chunks and using octrees to store information about the mass of stars for calculating gravity between every object. Glad to see someone implementing it in ECS already. :D
     
    Antypodish likes this.
  36. aganm

    aganm

    Joined:
    Sep 25, 2019
    Posts:
    114
    I'm fairly new to ECS and trying to figure this out. Does the octree put all neighbor entities in same chunks? Or does it store an array of entity ids in each node to iterate the entities?
     
  37. Antypodish

    Antypodish

    Joined:
    Apr 29, 2014
    Posts:
    10,753
    @aganm, this particular project is focused on octree nodes, based on buffer arrays.
    Meaning, each octree acceleration structure is a separate entity. But their nodes are stored in buffers of each octree's entity.

    Use case may be convenient, when need many separate octrees.
     
  38. berilyalcinkayaa

    berilyalcinkayaa

    Joined:
    Jan 11, 2019
    Posts:
    2
    Hello! It seems an interesting work. I am a bit new to octrees and I would like to ask if there is any tutorial on how to use the asset. In my case, I have a /octomap_binary message coming from Ros server (http://docs.ros.org/en/api/octomap_msgs/html/msg/Octomap.html). I would like to ask if it is possible to deserialize the message and visualize it with your asset. Any support would be appreciated. Thank you!
    Cheers.