Browse Source

Gather points (#171)

* Change logic for GatheringRowComponent
* Added row gathering points to 4 lanes

Signed-off-by: Michał Pełka <[email protected]>
Michał Pełka 2 years ago
parent
commit
415970fea0

+ 27 - 36
Project/Gem/Source/ApplePicker/GatheringRowComponent.cpp

@@ -19,30 +19,23 @@ namespace AppleKraken
         if (AZ::SerializeContext* serialize = azrtti_cast<AZ::SerializeContext*>(context))
         {
             serialize->Class<GatheringRowComponent, AZ::Component>()
-                ->Version(3)
-                ->Field("Start", &GatheringRowComponent::m_start)
-                ->Field("End", &GatheringRowComponent::m_end)
-                ->Field("PoseOffset", &GatheringRowComponent::m_poseOffset)
-                ->Field("TreeCount", &GatheringRowComponent::m_appleTreeCount);
+                ->Version(4)
+                ->Field("PoseOffset", &GatheringRowComponent::m_poseOffset);
 
             if (AZ::EditContext* ec = serialize->GetEditContext())
             {
-                ec->Class<GatheringRowComponent>("Gathering Row Component", "Poses (points with orientation) suitable for apple gathering")
+                ec->Class<GatheringRowComponent>("Gathering Row Component", "Poses (points with orientation) suitable for apple gathering."
+                                                                            "Component will return as navigation plan all its children "
+                                                                            "with name containing \'GatherPoint\'. "
+                                                                            "Points are sorted with entity name.")
                     ->ClassElement(AZ::Edit::ClassElements::EditorData, "")
                     ->Attribute(AZ::Edit::Attributes::Category, "AppleKraken")
                     ->Attribute(AZ::Edit::Attributes::AppearsInAddComponentMenu, AZ_CRC("Game"))
-                    ->DataElement(AZ::Edit::UIHandlers::Default, &GatheringRowComponent::m_start, "Start", "Entity with the start pose")
-                    ->DataElement(AZ::Edit::UIHandlers::Default, &GatheringRowComponent::m_end, "End", "Entity with the end pose")
                     ->DataElement(
                         AZ::Edit::UIHandlers::Default,
                         &GatheringRowComponent::m_poseOffset,
                         "Offset",
                         "Pose offset for each point (depends on robot)")
-                    ->DataElement(
-                        AZ::Edit::UIHandlers::Default,
-                        &GatheringRowComponent::m_appleTreeCount,
-                        "Tree count",
-                        "How many trees are in the row")
                     ->Attribute(AZ::Edit::Attributes::Min, 1);
             }
         }
@@ -61,35 +54,33 @@ namespace AppleKraken
 
     void GatheringRowComponent::ComputeGatheringPoses()
     {
-        if (!m_start.IsValid() || !m_end.IsValid())
+        // find all children
+        AZStd::vector<AZ::EntityId> descendants;
+        AZ::TransformBus::EventResult(descendants, GetEntityId(), &AZ::TransformBus::Events::GetAllDescendants);
+        if (descendants.empty())
         {
-            AZ_Error("GatheringRowComponent", false, "ComputeGatheringPoses: unable to proceed without both start and end entity set");
+            AZ_Error("GatheringRowComponent", false, "ComputeGatheringPoses: unable to proceed with empty set");
             return;
         }
-
-        if (m_appleTreeCount < 1)
+        // Simplification - we assume same orientations along the way
+        AZStd::map<AZStd::string, AZ::EntityId> sorted_names;
+        for (const auto& entity_id:descendants)
         {
-            AZ_Error("GatheringRowComponent", false, "ComputeGatheringPoses: unable to proceed with apple tree count less than 1");
-            return;
+            AZStd::string entity_name;
+            AZ::ComponentApplicationBus::BroadcastResult(entity_name, &AZ::ComponentApplicationRequests::GetEntityName, entity_id);
+            if (entity_id.IsValid()) {
+                if (entity_name.contains("GatherPoint")) {
+                    sorted_names[entity_name] = entity_id;
+                }
+            }
         }
-
-        GatheringPoses allPoses;
-        AZ::Transform startPose;
-        AZ::Transform endPose;
-        AZ::TransformBus::EventResult(startPose, m_start, &AZ::TransformBus::Events::GetWorldTM);
-        AZ::TransformBus::EventResult(endPose, m_end, &AZ::TransformBus::Events::GetWorldTM);
-
-        const AZ::Transform rowLookAt =
-            AZ::Transform::CreateLookAt(startPose.GetTranslation(), endPose.GetTranslation(), AZ::Constants::Axis::XPositive);
-
-        // Simplification - we assume same orientations along the way
-        const auto rowVector = endPose.GetTranslation() - startPose.GetTranslation();
-        for (int i = 0; i < m_appleTreeCount; ++i)
+        for (const auto &[_, entity_id]:sorted_names)
         {
-            AZ::Transform gatheringPoint = rowLookAt;
-            const float scale = static_cast<float>(i) / (m_appleTreeCount - 1);
-            gatheringPoint.SetTranslation(gatheringPoint.GetTranslation() + m_poseOffset + rowVector * scale);
-            m_gatheringPoses.emplace_back(gatheringPoint);
+            AZ::Transform pose;
+            AZ::TransformBus::EventResult(pose, entity_id, &AZ::TransformBus::Events::GetWorldTM);
+            pose = pose * AZ::Transform::CreateFromQuaternionAndTranslation(AZ::Quaternion::CreateIdentity(),
+                                                                            m_poseOffset);
+            m_gatheringPoses.emplace_back(pose);
         }
     }
 } // namespace AppleKraken

+ 0 - 4
Project/Gem/Source/ApplePicker/GatheringRowComponent.h

@@ -39,11 +39,7 @@ namespace AppleKraken
 
         void ComputeGatheringPoses();
 
-        AZ::EntityId m_start;
-        AZ::EntityId m_end;
         AZ::Vector3 m_poseOffset = AZ::Vector3::CreateZero(); //!< Depends on robot / effector setting, exposed for experimenting
-        uint16_t m_appleTreeCount = 13;
-
         GatheringPoses m_gatheringPoses;
     };
 } // namespace AppleKraken

+ 1 - 0
Project/Gem/Source/ApplePicker/KrakenEffectorComponent.cpp

@@ -11,6 +11,7 @@
 #include "Manipulator/ManipulatorRequestBus.h"
 #include "PickingStructs.h"
 #include <AzCore/Component/Entity.h>
+#include <AzCore/Component/ComponentApplicationBus.h>
 #include <AzCore/Component/TransformBus.h>
 #include <AzCore/Serialization/EditContext.h>
 #include <AzCore/Serialization/EditContextConstants.inl>

+ 3215 - 220
Project/Levels/Main/Main.prefab

@@ -40,6 +40,9 @@
                     "Entity_[104676312987105]",
                     "Entity_[1090499316769908]",
                     "Entity_[1377679985301621]",
+                    "Entity_[50248621122467]",
+                    "Entity_[50364585239459]",
+                    "Entity_[50497729225635]",
                     "Entity_[613152547383712]",
                     "Instance_[40055725095069]/ContainerEntity"
                 ]
@@ -1030,7 +1033,7 @@
         },
         "Entity_[1377679985301621]": {
             "Id": "Entity_[1377679985301621]",
-            "Name": "GatheringRow",
+            "Name": "GatheringRowLine1",
             "Components": {
                 "Component_[12569860409072173675]": {
                     "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
@@ -1038,8 +1041,8 @@
                     "Parent Entity": "Entity_[1146574390643]",
                     "Transform Data": {
                         "Translate": [
-                            -59.84291458129883,
-                            35.47842788696289,
+                            -63.237327575683594,
+                            36.44573974609375,
                             0.0
                         ]
                     }
@@ -1068,17 +1071,26 @@
                     "$type": "GenericComponentWrapper",
                     "Id": 6506285051007944421,
                     "m_template": {
-                        "$type": "GatheringRowComponent",
-                        "Start": "Entity_[1377688575236213]",
-                        "End": "Entity_[1377697165170805]"
+                        "$type": "GatheringRowComponent"
                     }
                 },
                 "Component_[8164175847176343181]": {
                     "$type": "EditorEntitySortComponent",
                     "Id": 8164175847176343181,
                     "Child Entity Order": [
-                        "Entity_[1377688575236213]",
-                        "Entity_[1377697165170805]"
+                        "Entity_[4429910008739]",
+                        "Entity_[4438499943331]",
+                        "Entity_[4455679812515]",
+                        "Entity_[4468564714403]",
+                        "Entity_[4481449616291]",
+                        "Entity_[4494334518179]",
+                        "Entity_[4507219420067]",
+                        "Entity_[4520104321955]",
+                        "Entity_[4532989223843]",
+                        "Entity_[4545874125731]",
+                        "Entity_[4558759027619]",
+                        "Entity_[4571643929507]",
+                        "Entity_[4584528831395]"
                     ]
                 },
                 "Component_[8225996335577294700]": {
@@ -1091,99 +1103,6 @@
                 }
             }
         },
-        "Entity_[1377688575236213]": {
-            "Id": "Entity_[1377688575236213]",
-            "Name": "Start",
-            "Components": {
-                "Component_[11538459141403005529]": {
-                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
-                    "Id": 11538459141403005529,
-                    "Parent Entity": "Entity_[1377679985301621]"
-                },
-                "Component_[11947992469664550580]": {
-                    "$type": "EditorEntityIconComponent",
-                    "Id": 11947992469664550580
-                },
-                "Component_[12136844628209740403]": {
-                    "$type": "EditorVisibilityComponent",
-                    "Id": 12136844628209740403
-                },
-                "Component_[14199351808047054605]": {
-                    "$type": "EditorOnlyEntityComponent",
-                    "Id": 14199351808047054605
-                },
-                "Component_[14960584158294418045]": {
-                    "$type": "EditorInspectorComponent",
-                    "Id": 14960584158294418045
-                },
-                "Component_[1845133092815959833]": {
-                    "$type": "EditorPendingCompositionComponent",
-                    "Id": 1845133092815959833
-                },
-                "Component_[5033738611993447155]": {
-                    "$type": "EditorEntitySortComponent",
-                    "Id": 5033738611993447155
-                },
-                "Component_[7192414286059315724]": {
-                    "$type": "EditorDisabledCompositionComponent",
-                    "Id": 7192414286059315724
-                },
-                "Component_[8631506422829805841]": {
-                    "$type": "EditorLockComponent",
-                    "Id": 8631506422829805841
-                }
-            }
-        },
-        "Entity_[1377697165170805]": {
-            "Id": "Entity_[1377697165170805]",
-            "Name": "End",
-            "Components": {
-                "Component_[14622380832334875767]": {
-                    "$type": "EditorEntitySortComponent",
-                    "Id": 14622380832334875767
-                },
-                "Component_[15625872885702800588]": {
-                    "$type": "EditorVisibilityComponent",
-                    "Id": 15625872885702800588
-                },
-                "Component_[16183695329271030129]": {
-                    "$type": "EditorLockComponent",
-                    "Id": 16183695329271030129
-                },
-                "Component_[16456657311684002994]": {
-                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
-                    "Id": 16456657311684002994,
-                    "Parent Entity": "Entity_[1377679985301621]",
-                    "Transform Data": {
-                        "Translate": [
-                            0.0,
-                            -38.903377532958984,
-                            0.0
-                        ]
-                    }
-                },
-                "Component_[17760302013238664821]": {
-                    "$type": "EditorInspectorComponent",
-                    "Id": 17760302013238664821
-                },
-                "Component_[6079329122693101296]": {
-                    "$type": "EditorEntityIconComponent",
-                    "Id": 6079329122693101296
-                },
-                "Component_[6636293252330045092]": {
-                    "$type": "EditorDisabledCompositionComponent",
-                    "Id": 6636293252330045092
-                },
-                "Component_[7890849669701597370]": {
-                    "$type": "EditorPendingCompositionComponent",
-                    "Id": 7890849669701597370
-                },
-                "Component_[8436891138138350551]": {
-                    "$type": "EditorOnlyEntityComponent",
-                    "Id": 8436891138138350551
-                }
-            }
-        },
         "Entity_[17223493880265070]": {
             "Id": "Entity_[17223493880265070]",
             "Name": "RefProbMain",
@@ -2315,181 +2234,3257 @@
                 }
             }
         },
-        "Entity_[4569290015101]": {
-            "Id": "Entity_[4569290015101]",
-            "Name": "Skybox",
+        "Entity_[4429910008739]": {
+            "Id": "Entity_[4429910008739]",
+            "Name": "GatherPoint01",
             "Components": {
-                "Component_[1030066146196689940]": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
                     "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
-                    "Id": 1030066146196689940,
-                    "Parent Entity": "Entity_[1176639161715]",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
                     "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -1.350982666015625,
+                            0.0
+                        ],
                         "Rotate": [
                             0.0,
                             0.0,
-                            199.0
+                            -90.0
                         ]
                     }
                 },
-                "Component_[16508829793178525305]": {
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
                     "$type": "EditorDisabledCompositionComponent",
-                    "Id": 16508829793178525305
+                    "Id": 587997580022414092
                 },
-                "Component_[1691941468498727695]": {
-                    "$type": "AZ::Render::EditorImageBasedLightComponent",
-                    "Id": 1691941468498727695,
-                    "Controller": {
-                        "Configuration": {
-                            "diffuseImageAsset": {
-                                "assetId": {
-                                    "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
-                                    "subId": 3000
-                                },
-                                "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
-                            },
-                            "specularImageAsset": {
-                                "assetId": {
-                                    "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
-                                    "subId": 2000
-                                },
-                                "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
-                            },
-                            "exposure": 1.399999976158142
-                        }
-                    }
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4438499943331]": {
+            "Id": "Entity_[4438499943331]",
+            "Name": "GatherPoint02",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
                 },
-                "Component_[16929892164416738853]": {
-                    "$type": "AZ::Render::EditorHDRiSkyboxComponent",
-                    "Id": 16929892164416738853,
-                    "Controller": {
-                        "Configuration": {
-                            "CubemapAsset": {
-                                "assetId": {
-                                    "guid": "{A127016D-187B-5145-B9AC-FE6146A0CFCD}",
-                                    "subId": 1000
-                                },
-                                "assetHint": "assets/images/sunflowers_4k_cm.exr.streamingimage"
-                            },
-                            "Exposure": 1.0
-                        }
-                    }
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
                 },
-                "Component_[17298970327614700857]": {
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
                     "$type": "EditorPendingCompositionComponent",
-                    "Id": 17298970327614700857
+                    "Id": 11903273050669042648
                 },
-                "Component_[375615859842590616]": {
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -4.791509628295898,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
                     "$type": "EditorEntityIconComponent",
-                    "Id": 375615859842590616
+                    "Id": 16159770048066527878
                 },
-                "Component_[6031442569134381051]": {
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4455679812515]": {
+            "Id": "Entity_[4455679812515]",
+            "Name": "GatherPoint03",
+            "Components": {
+                "Component_[10592247055369956730]": {
                     "$type": "EditorOnlyEntityComponent",
-                    "Id": 6031442569134381051
+                    "Id": 10592247055369956730
                 },
-                "Component_[7392315063493964287]": {
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
                     "$type": "EditorLockComponent",
-                    "Id": 7392315063493964287
+                    "Id": 11609650740897354057
                 },
-                "Component_[8489512278481689523]": {
-                    "$type": "EditorInspectorComponent",
-                    "Id": 8489512278481689523
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
                 },
-                "Component_[9191985581143312457]": {
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -7.949485778808594,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
                     "$type": "EditorEntitySortComponent",
-                    "Id": 9191985581143312457
+                    "Id": 14013846644142765707
                 },
-                "Component_[9429240633874311395]": {
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
                     "$type": "EditorVisibilityComponent",
-                    "Id": 9429240633874311395
+                    "Id": 9935025774700671265
                 }
             }
         },
-        "Entity_[4575349763039]": {
-            "Id": "Entity_[4575349763039]",
-            "Name": "Grass Mesh",
+        "Entity_[4468564714403]": {
+            "Id": "Entity_[4468564714403]",
+            "Name": "GatherPoint04",
             "Components": {
-                "Component_[11829562936681814697]": {
-                    "$type": "EditorEntityIconComponent",
-                    "Id": 11829562936681814697
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
                 },
-                "Component_[11890639404604887989]": {
-                    "$type": "EditorDisabledCompositionComponent",
-                    "Id": 11890639404604887989
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
                 },
-                "Component_[12138013386905564555]": {
-                    "$type": "EditorOnlyEntityComponent",
-                    "Id": 12138013386905564555
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
                 },
-                "Component_[13334157222591866819]": {
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -10.99848747253418,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
                     "$type": "EditorEntitySortComponent",
-                    "Id": 13334157222591866819
+                    "Id": 14013846644142765707
                 },
-                "Component_[14674047238244999169]": {
-                    "$type": "EditorPendingCompositionComponent",
-                    "Id": 14674047238244999169
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
                 },
-                "Component_[15950638666965376142]": {
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4481449616291]": {
+            "Id": "Entity_[4481449616291]",
+            "Name": "GatherPoint05",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
                     "$type": "EditorInspectorComponent",
-                    "Id": 15950638666965376142
+                    "Id": 1074467445936196339
                 },
-                "Component_[16974085005086347289]": {
+                "Component_[11609650740897354057]": {
                     "$type": "EditorLockComponent",
-                    "Id": 16974085005086347289
+                    "Id": 11609650740897354057
                 },
-                "Component_[18375685026847987119]": {
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
                     "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
-                    "Id": 18375685026847987119,
-                    "Parent Entity": "Entity_[1078906895689]",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
                     "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -13.393388748168945,
+                            0.0
+                        ],
                         "Rotate": [
                             0.0,
                             0.0,
-                            180.0
+                            -90.0
                         ]
                     }
                 },
-                "Component_[5626233881348526034]": {
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
                     "$type": "EditorVisibilityComponent",
-                    "Id": 5626233881348526034
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4494334518179]": {
+            "Id": "Entity_[4494334518179]",
+            "Name": "GatherPoint06",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
                 },
-                "Component_[7554061295846763283]": {
-                    "$type": "EditorMaterialComponent",
-                    "Id": 7554061295846763283,
-                    "Controller": {
-                        "Configuration": {
-                            "materials": [
-                                {
-                                    "Key": {
-                                        "materialSlotStableId": 3977523045
-                                    },
-                                    "Value": {
-                                        "MaterialAsset": {
-                                            "assetId": {
-                                                "guid": "{5E288B18-7C32-5972-8332-F2EFA056B534}"
-                                            },
-                                            "assetHint": "assets/grass_merged/grass_merged_tile_enhanced.azmaterial"
-                                        }
-                                    }
-                                }
-                            ]
-                        }
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -16.531766891479492,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
                     }
                 },
-                "Component_[8049329026898303781]": {
-                    "$type": "AZ::Render::EditorMeshComponent",
-                    "Id": 8049329026898303781,
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4507219420067]": {
+            "Id": "Entity_[4507219420067]",
+            "Name": "GatherPoint07",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -19.876476287841797,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4520104321955]": {
+            "Id": "Entity_[4520104321955]",
+            "Name": "GatherPoint08",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -22.6611328125,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4532989223843]": {
+            "Id": "Entity_[4532989223843]",
+            "Name": "GatherPoint09",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -25.92743492126465,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4545874125731]": {
+            "Id": "Entity_[4545874125731]",
+            "Name": "GatherPoint10",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -29.026020050048828,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4558759027619]": {
+            "Id": "Entity_[4558759027619]",
+            "Name": "GatherPoint11",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -32.06795883178711,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4569290015101]": {
+            "Id": "Entity_[4569290015101]",
+            "Name": "Skybox",
+            "Components": {
+                "Component_[1030066146196689940]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 1030066146196689940,
+                    "Parent Entity": "Entity_[1176639161715]",
+                    "Transform Data": {
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            199.0
+                        ]
+                    }
+                },
+                "Component_[16508829793178525305]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 16508829793178525305
+                },
+                "Component_[1691941468498727695]": {
+                    "$type": "AZ::Render::EditorImageBasedLightComponent",
+                    "Id": 1691941468498727695,
                     "Controller": {
                         "Configuration": {
-                            "ModelAsset": {
+                            "diffuseImageAsset": {
                                 "assetId": {
-                                    "guid": "{2EC2B7FE-B591-548B-B69D-A0971282E3EC}",
-                                    "subId": 281234033
+                                    "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+                                    "subId": 3000
                                 },
-                                "assetHint": "assets/grass_merged/grass_merged_original.azmodel"
+                                "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
                             },
-                            "SortKey": 222
-                        }
-                    }
+                            "specularImageAsset": {
+                                "assetId": {
+                                    "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
+                                    "subId": 2000
+                                },
+                                "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
+                            },
+                            "exposure": 1.399999976158142
+                        }
+                    }
+                },
+                "Component_[16929892164416738853]": {
+                    "$type": "AZ::Render::EditorHDRiSkyboxComponent",
+                    "Id": 16929892164416738853,
+                    "Controller": {
+                        "Configuration": {
+                            "CubemapAsset": {
+                                "assetId": {
+                                    "guid": "{A127016D-187B-5145-B9AC-FE6146A0CFCD}",
+                                    "subId": 1000
+                                },
+                                "assetHint": "assets/images/sunflowers_4k_cm.exr.streamingimage"
+                            },
+                            "Exposure": 1.0
+                        }
+                    }
+                },
+                "Component_[17298970327614700857]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 17298970327614700857
+                },
+                "Component_[375615859842590616]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 375615859842590616
+                },
+                "Component_[6031442569134381051]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 6031442569134381051
+                },
+                "Component_[7392315063493964287]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 7392315063493964287
+                },
+                "Component_[8489512278481689523]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 8489512278481689523
+                },
+                "Component_[9191985581143312457]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 9191985581143312457
+                },
+                "Component_[9429240633874311395]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9429240633874311395
+                }
+            }
+        },
+        "Entity_[4571643929507]": {
+            "Id": "Entity_[4571643929507]",
+            "Name": "GatherPoint12",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -35.311805725097656,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[4575349763039]": {
+            "Id": "Entity_[4575349763039]",
+            "Name": "Grass Mesh",
+            "Components": {
+                "Component_[11829562936681814697]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 11829562936681814697
+                },
+                "Component_[11890639404604887989]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 11890639404604887989
+                },
+                "Component_[12138013386905564555]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 12138013386905564555
+                },
+                "Component_[13334157222591866819]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 13334157222591866819
+                },
+                "Component_[14674047238244999169]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 14674047238244999169
+                },
+                "Component_[15950638666965376142]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 15950638666965376142
+                },
+                "Component_[16974085005086347289]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 16974085005086347289
+                },
+                "Component_[18375685026847987119]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 18375685026847987119,
+                    "Parent Entity": "Entity_[1078906895689]",
+                    "Transform Data": {
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            180.0
+                        ]
+                    }
+                },
+                "Component_[5626233881348526034]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 5626233881348526034
+                },
+                "Component_[7554061295846763283]": {
+                    "$type": "EditorMaterialComponent",
+                    "Id": 7554061295846763283,
+                    "Controller": {
+                        "Configuration": {
+                            "materials": [
+                                {
+                                    "Key": {
+                                        "materialSlotStableId": 3977523045
+                                    },
+                                    "Value": {
+                                        "MaterialAsset": {
+                                            "assetId": {
+                                                "guid": "{5E288B18-7C32-5972-8332-F2EFA056B534}"
+                                            },
+                                            "assetHint": "assets/grass_merged/grass_merged_tile_enhanced.azmaterial"
+                                        }
+                                    }
+                                }
+                            ]
+                        }
+                    }
+                },
+                "Component_[8049329026898303781]": {
+                    "$type": "AZ::Render::EditorMeshComponent",
+                    "Id": 8049329026898303781,
+                    "Controller": {
+                        "Configuration": {
+                            "ModelAsset": {
+                                "assetId": {
+                                    "guid": "{2EC2B7FE-B591-548B-B69D-A0971282E3EC}",
+                                    "subId": 281234033
+                                },
+                                "assetHint": "assets/grass_merged/grass_merged_original.azmodel"
+                            },
+                            "SortKey": 222
+                        }
+                    }
+                }
+            }
+        },
+        "Entity_[4584528831395]": {
+            "Id": "Entity_[4584528831395]",
+            "Name": "GatherPoint99",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[1377679985301621]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -40.13436508178711,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -90.0
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50201376482211]": {
+            "Id": "Entity_[50201376482211]",
+            "Name": "GatherPoint06",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -16.87603187561035,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50205671449507]": {
+            "Id": "Entity_[50205671449507]",
+            "Name": "GatherPoint99",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -40.13436508178711,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50209966416803]": {
+            "Id": "Entity_[50209966416803]",
+            "Name": "GatherPoint08",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -23.083377838134766,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50214261384099]": {
+            "Id": "Entity_[50214261384099]",
+            "Name": "GatherPoint07",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -19.876476287841797,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50218556351395]": {
+            "Id": "Entity_[50218556351395]",
+            "Name": "GatherPoint03",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -7.949485778808594,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50222851318691]": {
+            "Id": "Entity_[50222851318691]",
+            "Name": "GatherPoint10",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -29.026020050048828,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50227146285987]": {
+            "Id": "Entity_[50227146285987]",
+            "Name": "GatherPoint02",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -4.791509628295898,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50231441253283]": {
+            "Id": "Entity_[50231441253283]",
+            "Name": "GatherPoint09",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -25.92743492126465,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50235736220579]": {
+            "Id": "Entity_[50235736220579]",
+            "Name": "GatherPoint01",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -1.350982666015625,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50240031187875]": {
+            "Id": "Entity_[50240031187875]",
+            "Name": "GatherPoint05",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -13.393388748168945,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50244326155171]": {
+            "Id": "Entity_[50244326155171]",
+            "Name": "GatherPoint12",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -35.311805725097656,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50248621122467]": {
+            "Id": "Entity_[50248621122467]",
+            "Name": "GatheringRowLine2",
+            "Components": {
+                "Component_[12569860409072173675]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 12569860409072173675,
+                    "Parent Entity": "Entity_[1146574390643]",
+                    "Transform Data": {
+                        "Translate": [
+                            -59.67982482910156,
+                            36.655025482177734,
+                            0.0
+                        ]
+                    }
+                },
+                "Component_[12865825626512645118]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 12865825626512645118
+                },
+                "Component_[15471213523630498323]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 15471213523630498323
+                },
+                "Component_[18390545873450438881]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 18390545873450438881
+                },
+                "Component_[336629041609428677]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 336629041609428677
+                },
+                "Component_[5320963908403420676]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 5320963908403420676
+                },
+                "Component_[6506285051007944421]": {
+                    "$type": "GenericComponentWrapper",
+                    "Id": 6506285051007944421,
+                    "m_template": {
+                        "$type": "GatheringRowComponent"
+                    }
+                },
+                "Component_[8164175847176343181]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 8164175847176343181,
+                    "Child Entity Order": [
+                        "Entity_[50235736220579]",
+                        "Entity_[50227146285987]",
+                        "Entity_[50218556351395]",
+                        "Entity_[50252916089763]",
+                        "Entity_[50240031187875]",
+                        "Entity_[50201376482211]",
+                        "Entity_[50214261384099]",
+                        "Entity_[50209966416803]",
+                        "Entity_[50231441253283]",
+                        "Entity_[50222851318691]",
+                        "Entity_[50257211057059]",
+                        "Entity_[50244326155171]",
+                        "Entity_[50205671449507]"
+                    ]
+                },
+                "Component_[8225996335577294700]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 8225996335577294700
+                },
+                "Component_[9436431492391050860]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 9436431492391050860
+                }
+            }
+        },
+        "Entity_[50252916089763]": {
+            "Id": "Entity_[50252916089763]",
+            "Name": "GatherPoint04",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -10.99848747253418,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50257211057059]": {
+            "Id": "Entity_[50257211057059]",
+            "Name": "GatherPoint11",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50248621122467]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -32.06795883178711,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50321635566499]": {
+            "Id": "Entity_[50321635566499]",
+            "Name": "GatherPoint01",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -1.350982666015625,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50325930533795]": {
+            "Id": "Entity_[50325930533795]",
+            "Name": "GatherPoint02",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -4.791509628295898,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50330225501091]": {
+            "Id": "Entity_[50330225501091]",
+            "Name": "GatherPoint06",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -16.531766891479492,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50334520468387]": {
+            "Id": "Entity_[50334520468387]",
+            "Name": "GatherPoint04",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -10.99848747253418,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50338815435683]": {
+            "Id": "Entity_[50338815435683]",
+            "Name": "GatherPoint03",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -7.949485778808594,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50343110402979]": {
+            "Id": "Entity_[50343110402979]",
+            "Name": "GatherPoint08",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -22.6611328125,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50347405370275]": {
+            "Id": "Entity_[50347405370275]",
+            "Name": "GatherPoint99",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -40.13436508178711,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50351700337571]": {
+            "Id": "Entity_[50351700337571]",
+            "Name": "GatherPoint07",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -19.876476287841797,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50355995304867]": {
+            "Id": "Entity_[50355995304867]",
+            "Name": "GatherPoint05",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -13.393388748168945,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50360290272163]": {
+            "Id": "Entity_[50360290272163]",
+            "Name": "GatherPoint11",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -33.05921173095703,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50364585239459]": {
+            "Id": "Entity_[50364585239459]",
+            "Name": "GatheringRowLine3",
+            "Components": {
+                "Component_[12569860409072173675]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 12569860409072173675,
+                    "Parent Entity": "Entity_[1146574390643]",
+                    "Transform Data": {
+                        "Translate": [
+                            -55.96815872192383,
+                            37.018795013427734,
+                            0.0
+                        ]
+                    }
+                },
+                "Component_[12865825626512645118]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 12865825626512645118
+                },
+                "Component_[15471213523630498323]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 15471213523630498323
+                },
+                "Component_[18390545873450438881]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 18390545873450438881
+                },
+                "Component_[336629041609428677]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 336629041609428677
+                },
+                "Component_[5320963908403420676]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 5320963908403420676
+                },
+                "Component_[6506285051007944421]": {
+                    "$type": "GenericComponentWrapper",
+                    "Id": 6506285051007944421,
+                    "m_template": {
+                        "$type": "GatheringRowComponent"
+                    }
+                },
+                "Component_[8164175847176343181]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 8164175847176343181,
+                    "Child Entity Order": [
+                        "Entity_[50321635566499]",
+                        "Entity_[50325930533795]",
+                        "Entity_[50338815435683]",
+                        "Entity_[50334520468387]",
+                        "Entity_[50355995304867]",
+                        "Entity_[50330225501091]",
+                        "Entity_[50351700337571]",
+                        "Entity_[50343110402979]",
+                        "Entity_[50377470141347]",
+                        "Entity_[50368880206755]",
+                        "Entity_[50360290272163]",
+                        "Entity_[50373175174051]",
+                        "Entity_[50347405370275]"
+                    ]
+                },
+                "Component_[8225996335577294700]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 8225996335577294700
+                },
+                "Component_[9436431492391050860]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 9436431492391050860
+                }
+            }
+        },
+        "Entity_[50368880206755]": {
+            "Id": "Entity_[50368880206755]",
+            "Name": "GatherPoint10",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -30.0495548248291,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50373175174051]": {
+            "Id": "Entity_[50373175174051]",
+            "Name": "GatherPoint12",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -36.25094985961914,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50377470141347]": {
+            "Id": "Entity_[50377470141347]",
+            "Name": "GatherPoint09",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50364585239459]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -26.441133499145508,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50446189618083]": {
+            "Id": "Entity_[50446189618083]",
+            "Name": "GatherPoint07",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -19.581188201904297,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50450484585379]": {
+            "Id": "Entity_[50450484585379]",
+            "Name": "GatherPoint03",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -7.949485778808594,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50454779552675]": {
+            "Id": "Entity_[50454779552675]",
+            "Name": "GatherPoint04",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -10.99848747253418,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50459074519971]": {
+            "Id": "Entity_[50459074519971]",
+            "Name": "GatherPoint99",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -40.13436508178711,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50463369487267]": {
+            "Id": "Entity_[50463369487267]",
+            "Name": "GatherPoint11",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -32.797279357910156,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50467664454563]": {
+            "Id": "Entity_[50467664454563]",
+            "Name": "GatherPoint10",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -29.704587936401367,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50471959421859]": {
+            "Id": "Entity_[50471959421859]",
+            "Name": "GatherPoint08",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -22.6611328125,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50476254389155]": {
+            "Id": "Entity_[50476254389155]",
+            "Name": "GatherPoint02",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -4.791509628295898,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50480549356451]": {
+            "Id": "Entity_[50480549356451]",
+            "Name": "GatherPoint05",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -12.849260330200195,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50484844323747]": {
+            "Id": "Entity_[50484844323747]",
+            "Name": "GatherPoint12",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -35.85905456542969,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50489139291043]": {
+            "Id": "Entity_[50489139291043]",
+            "Name": "GatherPoint09",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -26.29512596130371,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50493434258339]": {
+            "Id": "Entity_[50493434258339]",
+            "Name": "GatherPoint06",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -16.361331939697266,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
+                }
+            }
+        },
+        "Entity_[50497729225635]": {
+            "Id": "Entity_[50497729225635]",
+            "Name": "GatheringRowLine4",
+            "Components": {
+                "Component_[12569860409072173675]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 12569860409072173675,
+                    "Parent Entity": "Entity_[1146574390643]",
+                    "Transform Data": {
+                        "Translate": [
+                            -52.43423080444336,
+                            37.122840881347656,
+                            0.0
+                        ]
+                    }
+                },
+                "Component_[12865825626512645118]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 12865825626512645118
+                },
+                "Component_[15471213523630498323]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 15471213523630498323
+                },
+                "Component_[18390545873450438881]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 18390545873450438881
+                },
+                "Component_[336629041609428677]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 336629041609428677
+                },
+                "Component_[5320963908403420676]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 5320963908403420676
+                },
+                "Component_[6506285051007944421]": {
+                    "$type": "GenericComponentWrapper",
+                    "Id": 6506285051007944421,
+                    "m_template": {
+                        "$type": "GatheringRowComponent"
+                    }
+                },
+                "Component_[8164175847176343181]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 8164175847176343181,
+                    "Child Entity Order": [
+                        "Entity_[50502024192931]",
+                        "Entity_[50476254389155]",
+                        "Entity_[50450484585379]",
+                        "Entity_[50454779552675]",
+                        "Entity_[50480549356451]",
+                        "Entity_[50493434258339]",
+                        "Entity_[50446189618083]",
+                        "Entity_[50471959421859]",
+                        "Entity_[50489139291043]",
+                        "Entity_[50467664454563]",
+                        "Entity_[50463369487267]",
+                        "Entity_[50484844323747]",
+                        "Entity_[50459074519971]"
+                    ]
+                },
+                "Component_[8225996335577294700]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 8225996335577294700
+                },
+                "Component_[9436431492391050860]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 9436431492391050860
+                }
+            }
+        },
+        "Entity_[50502024192931]": {
+            "Id": "Entity_[50502024192931]",
+            "Name": "GatherPoint01",
+            "Components": {
+                "Component_[10592247055369956730]": {
+                    "$type": "EditorOnlyEntityComponent",
+                    "Id": 10592247055369956730
+                },
+                "Component_[1074467445936196339]": {
+                    "$type": "EditorInspectorComponent",
+                    "Id": 1074467445936196339
+                },
+                "Component_[11609650740897354057]": {
+                    "$type": "EditorLockComponent",
+                    "Id": 11609650740897354057
+                },
+                "Component_[11903273050669042648]": {
+                    "$type": "EditorPendingCompositionComponent",
+                    "Id": 11903273050669042648
+                },
+                "Component_[11962354142411427710]": {
+                    "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
+                    "Id": 11962354142411427710,
+                    "Parent Entity": "Entity_[50497729225635]",
+                    "Transform Data": {
+                        "Translate": [
+                            0.0,
+                            -1.350982666015625,
+                            0.0
+                        ],
+                        "Rotate": [
+                            0.0,
+                            0.0,
+                            -89.99994659423828
+                        ]
+                    }
+                },
+                "Component_[14013846644142765707]": {
+                    "$type": "EditorEntitySortComponent",
+                    "Id": 14013846644142765707
+                },
+                "Component_[16159770048066527878]": {
+                    "$type": "EditorEntityIconComponent",
+                    "Id": 16159770048066527878
+                },
+                "Component_[587997580022414092]": {
+                    "$type": "EditorDisabledCompositionComponent",
+                    "Id": 587997580022414092
+                },
+                "Component_[9935025774700671265]": {
+                    "$type": "EditorVisibilityComponent",
+                    "Id": 9935025774700671265
                 }
             }
         },